Skip to content

Commit

Permalink
18765: Sets GitHub macOS amd64 default runner to use NoAVX binary (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
calebwherry authored Dec 21, 2023
1 parent 96a25b9 commit 6068a52
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ jobs:
done
# Uses GitHub default macos runner (amd64)
# Note: these runners have the potential to not have AVX+ instructions so only run NoAVX binaries
smoke-test-macos-amd64:
needs: ['build-macos']
runs-on: macos-latest
Expand All @@ -274,7 +275,7 @@ jobs:
run: |
set -e
cd ./amalgam/bin
for f in *; do
for f in *noavx*; do
echo -n "$f: " && "./$f" --version
done
Expand Down

0 comments on commit 6068a52

Please sign in to comment.