Skip to content

Commit

Permalink
Bump hexpm to re-enable aarch64-unknown-linux-gnu
Browse files Browse the repository at this point in the history
Bumping hexpm also bumps ring so that we no longer
depend on the older version of ring that was causing
aarch64 to fail

Fixes #2221
  • Loading branch information
Pi-Cla authored and lpil committed May 5, 2024
1 parent 9eed36b commit 4936415
Show file tree
Hide file tree
Showing 4 changed files with 82 additions and 50 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ jobs:
target:
- x86_64-unknown-linux-gnu
- x86_64-unknown-linux-musl
# https://github.com/gleam-lang/gleam/issues/2221
# - aarch64-unknown-linux-gnu
- aarch64-unknown-linux-gnu
- aarch64-unknown-linux-musl
- x86_64-apple-darwin
- x86_64-pc-windows-msvc
Expand All @@ -47,10 +46,10 @@ jobs:
target: x86_64-unknown-linux-musl
use-cross: true
run-integration-tests: true
# - os: ubuntu-latest
# target: aarch64-unknown-linux-gnu
# use-cross: true
# run-integration-tests: false # Cannot run aarch64 binaries on x86_64
- os: ubuntu-latest
target: aarch64-unknown-linux-gnu
use-cross: true
run-integration-tests: false # Cannot run aarch64 binaries on x86_64
- os: ubuntu-latest
target: aarch64-unknown-linux-musl
use-cross: true
Expand Down
117 changes: 73 additions & 44 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,6 @@ thiserror = "1"
pretty_assertions = "1"
# Snapshot testing to make test maintenance easier
insta = "1"
# A transitive dependency needed to compile into wasm32-unknown-unknown
# See https://docs.rs/getrandom/latest/getrandom/index.html#webassembly-support
getrandom = { version = "0", features = ["js"] }
1 change: 1 addition & 0 deletions compiler-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ itertools.workspace = true
serde.workspace = true
termcolor.workspace = true
tracing.workspace = true
getrandom.workspace = true

[dev-dependencies]
wasm-bindgen-test = "0.3.42"

0 comments on commit 4936415

Please sign in to comment.