Skip to content

Commit

Permalink
fix: add arch check
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsLando committed Nov 19, 2024
1 parent 97c82da commit 1d5074f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/test_install_arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
cache: "npm"

- name: Check arch is arm64
run: |
if [[ $(uname -m) != "arm64" ]]; then
echo "This job should run on arm64 architecture"
exit 1
fi
- name: Install and pre-build
run: |
Expand Down

0 comments on commit 1d5074f

Please sign in to comment.