Skip to content

Commit

Permalink
.github/workflows/ci-sage.yml: Set ARCHFLAGS on x86_64 only
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koeppe committed Jun 9, 2024
1 parent 039eebc commit 0e423e3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci-sage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,6 @@ jobs:
matrix:
os: ['macos-13', 'macos-latest']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13-dev']
env:
# Work around https://github.com/sagemath/cysignals/issues/179
ARCHFLAGS: "-arch x86_64"
steps:
- name: Set up the repository
uses: actions/checkout@v4
Expand All @@ -201,7 +198,11 @@ jobs:
brew install autoconf
python -m pip install --upgrade pip
- name: Build and check
# Work around https://github.com/sagemath/cysignals/issues/179
run: |
case $RUNNER_ARCH in
X*) export ARCHFLAGS="-arch x86_64";;
esac
make -j4 check
macos:
Expand Down

0 comments on commit 0e423e3

Please sign in to comment.