Skip to content

Commit

Permalink
For CI tests, try running with macos on both intel and arm hardware (…
Browse files Browse the repository at this point in the history
…both using the intel conda stack), to try and reproduce reported user crashes.
  • Loading branch information
tskisner committed Mar 23, 2024
1 parent 18c0885 commit 62f819b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
- os: ubuntu-latest
python: "3.11"
arch: Linux-x86_64
- os: macos-latest
python: "3.10"
- os: macos-12
python: "3.11"
arch: MacOSX-x86_64
- os: macos-latest
- os: macos-14
python: "3.11"
arch: MacOSX-x86_64
steps:
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
pyver=${{ matrix.python }} &&
sed -i -E "s/python=3\.[[:digit:]]+.*/python=${pyver}/" ./config/default/packages_conda.txt &&
cat ./config/default/packages_conda.txt &&
if [ ${{ matrix.os }} = "macos-latest" ]; then \
if [[ ${{ matrix.os }} == "macos-12" || ${{ matrix.os }} == "macos-14" ]]; then \
./soconda.sh -e soconda -v CI -c binary; \
else \
./soconda.sh -e soconda -v CI -c default; \
Expand Down

0 comments on commit 62f819b

Please sign in to comment.