Skip to content

Commit

Permalink
Fixing Github Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
syrusakbary committed Nov 20, 2020
1 parent a6492ed commit 95314cf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
strategy:
fail-fast: false
matrix:
build: [linux, macos, windows, linux-aarch64]
build: [linux, macos, macos-arm64, windows, linux-aarch64]
include:
- build: linux
os: ubuntu-18.04
Expand All @@ -55,7 +55,7 @@ jobs:
artifact_name: 'wasmer-macos-amd64'
cross_compilation_artifact_name: 'cross_compiled_from_mac'
run_integration_tests: true
- build: macos
- build: macos-arm64
os: macos-latest
rust: nightly
target: aarch64-apple-darwin
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
- name: Setup Rust target
run:
echo "\n[build]\ntarget = \"aarch64-apple-darwin\"" >> .cargo/config.toml
if: matrix.target != 'aarch64-apple-darwin' # we just build
if: matrix.target == 'aarch64-apple-darwin' # we just build
- name: Configure cargo data directory
# After this point, all cargo registry and crate data is stored in
# $GITHUB_WORKSPACE/.cargo_home. This allows us to cache only the files
Expand Down

0 comments on commit 95314cf

Please sign in to comment.