diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5e49a972..fba54f18 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 @@ -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 }} diff --git a/Cross.toml b/Cross.toml index ad690a42..b6ba4f34 100644 --- a/Cross.toml +++ b/Cross.toml @@ -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",