mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2024-10-01 01:45:40 -04:00
Merge pull request #1652 from delta1/ci-release-bins
ci: fix build-release-binaries
This commit is contained in:
commit
1d4a536bb1
14
.github/workflows/build-release-binaries.yml
vendored
14
.github/workflows/build-release-binaries.yml
vendored
@ -6,8 +6,9 @@ on:
|
||||
|
||||
jobs:
|
||||
build_binaries:
|
||||
name: Build swap and asb binaries
|
||||
name: Build
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- bin: swap
|
||||
@ -63,11 +64,16 @@ jobs:
|
||||
with:
|
||||
toolchain: "1.74"
|
||||
|
||||
- name: install armv7 target
|
||||
if: matrix.target != 'armv7-unknown-linux-gnueabihf'
|
||||
run: rustup target add armv7-unknown-linux-gnueabihf
|
||||
- name: Cross Build ${{ matrix.target }} ${{ matrix.bin }} binary
|
||||
if: matrix.target == 'armv7-unknown-linux-gnueabihf'
|
||||
run: |
|
||||
curl -L "https://github.com/cross-rs/cross/releases/download/v0.2.5/cross-x86_64-unknown-linux-gnu.tar.gz" | tar xzv
|
||||
sudo mv cross /usr/bin
|
||||
sudo mv cross-util /usr/bin
|
||||
cross build --target=${{ matrix.target }} --release --package swap --bin ${{ matrix.bin }}
|
||||
|
||||
- name: Build ${{ matrix.target }} ${{ matrix.bin }} release binary
|
||||
if: matrix.target != 'armv7-unknown-linux-gnueabihf'
|
||||
run: cargo build --target=${{ matrix.target }} --release --package swap --bin ${{ matrix.bin }}
|
||||
|
||||
- name: Smoke test the binary
|
||||
|
Loading…
Reference in New Issue
Block a user