Skip to content

Commit

Permalink
github: Use newer version of Python for MacOS Arm
Browse files Browse the repository at this point in the history
  • Loading branch information
spencer-lunarg committed Apr 25, 2024
1 parent d0ffc68 commit d5ada53
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,17 @@ jobs:
os: [ ubuntu-20.04, ubuntu-22.04, windows-latest, macos-latest ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Set up Python 3.8
if: matrix.os != 'macos-latest'
uses: actions/setup-python@v5
with:
python-version: '3.8'
python-version: '3.8'
# MacOS machine can run on arm64 and it doesn't support 3.8
- name: Set up Python 3.10.11
if: matrix.os == 'macos-latest'
uses: actions/setup-python@v5
with:
python-version: '3.10.11'
- name: Test CMake Minimum
if: matrix.os == 'ubuntu-20.04'
uses: lukka/get-cmake@latest
Expand Down

0 comments on commit d5ada53

Please sign in to comment.