Skip to content

Commit

Permalink
Use free GitHub Actions workers whenever possible (#276)
Browse files Browse the repository at this point in the history
Co-authored-by: Matt Seddon <[email protected]>
  • Loading branch information
0x2b3bfa0 and mattseddon authored Aug 21, 2024
1 parent 77947c8 commit e1a13a4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests-studio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ concurrency:
jobs:
studio:
if: '!github.event.pull_request.head.repo.fork'
runs-on: ubuntu-latest-16-cores
runs-on: ubuntu-latest
strategy:
matrix:
pyv: ['3.12']
Expand Down
14 changes: 11 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ jobs:
pyv: '3.9'
- os: macos-latest
pyv: '3.12'
- os: windows-latest-8-cores
- os: windows-latest
pyv: '3.9'
- os: windows-latest-8-cores
- os: windows-latest
pyv: '3.12'

steps:
Expand Down Expand Up @@ -116,9 +116,17 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest-16-cores, macos-latest, windows-latest-8-cores]
os: [ubuntu-latest, macos-latest, windows-latest]
pyv: ['3.9', '3.12']
group: ['get_started', 'llm_and_nlp or computer_vision', 'multimodal']
exclude:
- {os: ubuntu-latest, pyv: '3.9', group: 'multimodal'}
- {os: ubuntu-latest, pyv: '3.12', group: 'multimodal'}
include:
- {os: ubuntu-latest-4-cores, pyv: "3.9", group: multimodal}
- {os: ubuntu-latest-4-cores, pyv: "3.12", group: multimodal}


steps:
- uses: actions/checkout@v4

Expand Down

0 comments on commit e1a13a4

Please sign in to comment.