Skip to content

Commit

Permalink
[PY-668][Internal] Exclude macos from testing on 3.8 and 3.9 (#827)
Browse files Browse the repository at this point in the history
* ci: Exclude macos from testing on 3.8 and 3.9

* ci: Use macos-13 for python3.8 and 3.9

Co-authored-by: saurbhc <[email protected]>

* Update .github/workflows/JOB_tests.yml

Co-authored-by: saurbhc <[email protected]>

---------

Co-authored-by: saurbhc <[email protected]>
  • Loading branch information
shernshiou and saurbhc authored Apr 25, 2024
1 parent ec7a9a4 commit 560f911
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/JOB_generate_documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

permissions:
id-token: write # This is required for requesting the JWT
contents: read # This is required for actions/checkout
contents: read # This is required for actions/checkout

env:
AWS_REGION: eu-west-1
Expand All @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -59,7 +59,5 @@ jobs:
role-session-name: ${{ env.AWS_SESSION_NAME }}
aws-region: ${{ env.AWS_REGION }}


- name: Upload docs to S3
run: aws s3 cp docs/ s3://darwin-py-sdk.v7labs.com/ --recursive

10 changes: 10 additions & 0 deletions .github/workflows/JOB_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,16 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
exclude:
- os: macos-latest
python-version: "3.8"
- os: macos-latest
python-version: "3.9"
include:
- os: macos-13
python-version: "3.8"
- os: macos-13
python-version: "3.9"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 560f911

Please sign in to comment.