Skip to content

Commit

Permalink
Don't run GH Actions on arm64
Browse files Browse the repository at this point in the history
The Conda solver can't find geotesscpp for arm64 (macOS-latest) builds
b/c it doesn't yet exist.  The macOS-latest is macOS-14, which is an M1
chip (arm) and fails the resolve the geotesscpp dependency. macOS-13 (I
think) is still x86-64, which should work.
  • Loading branch information
jkmacc-LANL committed Jul 11, 2024
1 parent 7e491bb commit efaee4e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/python-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
os: [ubuntu-latest, macOS-latest]
os: [ubuntu-latest, macOS-13]
# os: [ubuntu-latest, macOS-latest, windows-latest]

steps:
Expand All @@ -28,6 +28,8 @@ jobs:
python-version: ${{ matrix.python-version }}
environment-file: environment-dev.yml
# activate-environment: geotess-dev
channels: conda-forge
channel-priority: strict
- run: |
conda info
conda list
Expand Down

0 comments on commit efaee4e

Please sign in to comment.