Skip to content

Commit

Permalink
Try using Python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
dpogue committed Nov 25, 2023
1 parent 2541989 commit 5611482
Showing 1 changed file with 22 additions and 10 deletions.
32 changes: 22 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ jobs:

steps:
- name: Checkout Plasma
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Checkout MaxSDK
continue-on-error: true
if: needs.max-secrets.outputs.HAS_MACHINE_USER_TOKEN == 'true'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: H-uruMachineUser/3dsMaxSDK
token: ${{ secrets.MACHINE_USER_REPO_READ }}
Expand All @@ -68,6 +68,10 @@ jobs:
"${{ secrets.GITHUB_TOKEN }}" `
-source "https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json"
- uses: actions/setup-python@v4
with:
python-version: '3.11'

- name: Configure
run: |
cmake `
Expand Down Expand Up @@ -120,10 +124,10 @@ jobs:

steps:
- name: Checkout Plasma
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Checkout MaxSDK
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: H-uruMachineUser/3dsMaxSDK
token: ${{ secrets.MACHINE_USER_REPO_READ }}
Expand All @@ -142,6 +146,10 @@ jobs:
"${{ secrets.GITHUB_TOKEN }}" `
-source "https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json"
- uses: actions/setup-python@v4
with:
python-version: '3.11'

- name: Configure
run: |
cmake `
Expand Down Expand Up @@ -181,7 +189,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install dependencies
run: |
Expand Down Expand Up @@ -209,6 +217,10 @@ jobs:
"${{ secrets.GITHUB_TOKEN }}" \
-source "https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json"
- uses: actions/setup-python@v4
with:
python-version: '3.11'

- name: Configure
run: |
cmake \
Expand Down Expand Up @@ -257,7 +269,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install dependencies
run: |
Expand All @@ -268,10 +280,6 @@ jobs:
libtool \
nasm
# Workaround for missing distutils on macOS: https://github.com/actions/runner/issues/2958
- name: Install setuptools
run: sudo -H pip install setuptools

- name: Setup NuGet
run: |
nuget sources add \
Expand All @@ -285,6 +293,10 @@ jobs:
"${{ secrets.GITHUB_TOKEN }}" \
-source "https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json"
- uses: actions/setup-python@v4
with:
python-version: '3.11'

- name: Configure
run: |
cmake \
Expand Down

0 comments on commit 5611482

Please sign in to comment.