Skip to content

Commit

Permalink
Re-bundle sqlite and switch CI builds to musl
Browse files Browse the repository at this point in the history
  • Loading branch information
bubelov committed Oct 8, 2024
1 parent 1fa69fc commit 5895bf7
Show file tree
Hide file tree
Showing 4 changed files with 256 additions and 594 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,16 @@ jobs:
- name: Install the latest toolchain
run: |
rustup update
rustup target add x86_64-unknown-linux-musl
- name: Install musl
run: sudo apt-get install -y musl-tools

- name: Run tests
run: cargo test --release --verbose
run: cargo test --target=x86_64-unknown-linux-musl --verbose

- name: Build
run: cargo build --release --verbose
run: cargo build --release --target=x86_64-unknown-linux-musl --verbose

- name: Create preview release
uses: softprops/action-gh-release@v2
Expand All @@ -35,4 +36,4 @@ jobs:
tag_name: 'preview'
prerelease: true
name: 'preview'
files: 'target/release/btcmap-cli'
files: 'target/x86_64-unknown-linux-musl/release/btcmap-cli'
Loading

0 comments on commit 5895bf7

Please sign in to comment.