Skip to content

Commit

Permalink
fix: remove Mithril from cross builds (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
scarmuega committed May 17, 2024
1 parent e170c05 commit 7dacadf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ jobs:
- release_for: Linux-arm64
build_on: ubuntu-latest
target: "aarch64-unknown-linux-gnu"
args: "--locked --release"
# we skip mithril because of no support for cross compile
args: "--locked --release --no-default-features"

- release_for: Windows-x86_64
build_on: windows-latest
Expand All @@ -43,7 +44,8 @@ jobs:
- release_for: Darwin-arm64
build_on: macOS-latest
target: aarch64-apple-darwin
args: "--locked --release"
# we skip mithril because of no support for cross compile
args: "--locked --release --no-default-features"

runs-on: ${{ matrix.build_on }}

Expand Down
4 changes: 2 additions & 2 deletions Cross.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[target.armv7-unknown-linux-gnueabihf]
image = "ghcr.io/cross-rs/armv7-unknown-linux-gnueabihf:edge"
[target.aarch64-unknown-linux-gnu]
image = "ghcr.io/cross-rs/aarch64-unknown-linux-gnu:edge"
pre-build = [
"dpkg --add-architecture $CROSS_DEB_ARCH",
"apt-get update",
Expand Down

0 comments on commit 7dacadf

Please sign in to comment.