forked from comit-network/xmr-btc-swap
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci): Temporarily disable armv7 cross compilation (#35)
- Loading branch information
1 parent
2131500
commit 88cfd6b
Showing
2 changed files
with
20 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ jobs: | |
libssl-dev \ | ||
libayatana-appindicator3-dev \ | ||
librsvg2-dev | ||
- name: Check formatting | ||
uses: dprint/[email protected] | ||
with: | ||
|
@@ -64,7 +64,7 @@ jobs: | |
libssl-dev \ | ||
libayatana-appindicator3-dev \ | ||
librsvg2-dev | ||
- name: Build swap | ||
run: cargo build --bin swap | ||
|
||
|
@@ -91,7 +91,7 @@ jobs: | |
libssl-dev \ | ||
libayatana-appindicator3-dev \ | ||
librsvg2-dev | ||
- name: Install sqlx-cli | ||
run: cargo install --locked --version 0.6.3 sqlx-cli | ||
|
||
|
@@ -106,8 +106,8 @@ jobs: | |
include: | ||
- target: x86_64-unknown-linux-gnu | ||
os: ubuntu-latest | ||
- target: armv7-unknown-linux-gnueabihf | ||
os: ubuntu-latest | ||
#- target: armv7-unknown-linux-gnueabihf | ||
# os: ubuntu-latest | ||
- target: x86_64-apple-darwin | ||
os: macos-12 | ||
- target: aarch64-apple-darwin | ||
|
@@ -139,7 +139,7 @@ jobs: | |
libssl-dev \ | ||
libayatana-appindicator3-dev \ | ||
librsvg2-dev | ||
- name: Build binary | ||
if: matrix.target != 'armv7-unknown-linux-gnueabihf' | ||
run: cargo build -p swap --target ${{ matrix.target }} | ||
|
@@ -196,7 +196,7 @@ jobs: | |
libssl-dev \ | ||
libayatana-appindicator3-dev \ | ||
librsvg2-dev | ||
- name: Checkout sources | ||
uses: actions/[email protected] | ||
|
||
|
@@ -254,7 +254,7 @@ jobs: | |
libssl-dev \ | ||
libayatana-appindicator3-dev \ | ||
librsvg2-dev | ||
- name: Run test ${{ matrix.test_name }} | ||
run: cargo test --package swap --all-features --test ${{ matrix.test_name }} -- --nocapture | ||
|
||
|
@@ -278,7 +278,7 @@ jobs: | |
libssl-dev \ | ||
libayatana-appindicator3-dev \ | ||
librsvg2-dev | ||
- name: Run RPC server tests | ||
run: cargo test --package swap --all-features --test rpc -- --nocapture | ||
|
||
|
@@ -304,6 +304,6 @@ jobs: | |
libssl-dev \ | ||
libayatana-appindicator3-dev \ | ||
librsvg2-dev | ||
- name: Run cargo check on stable rust | ||
run: cargo check --all-targets |