Skip to content

Commit

Permalink
Checking ARM achitecture functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
markbotterill committed Jan 19, 2024
1 parent a8926ff commit 8fdbe4f
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/pkg_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,15 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: '3.10.6'


- name: Check architecture
run: |
if [[ $(uname -m) == 'arm64' ]]; then
echo "Runner is ARM architecture (Apple Silicon)"
else
echo "Runner is NOT ARM architecture"
exit 1
fi
- name: Upgrade pip
run: pip install --upgrade pip

Expand Down

0 comments on commit 8fdbe4f

Please sign in to comment.