Skip to content

Commit

Permalink
Make short tests use only the high memory runners
Browse files Browse the repository at this point in the history
Attempt 3 : Use Max's suggestion of building runs-on "manually"
  • Loading branch information
aaruni96 committed Nov 6, 2024
1 parent 71cc52c commit 082178d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ concurrency:

jobs:
test:
runs-on: ${{ matrix.os }}
runs-on: ["${{matrix.os}}", "${{matrix.hosted}}", "${{ matrix.group == 'short' && 'high-memory' || '' }}"]
timeout-minutes: 150
strategy:
fail-fast: false
Expand All @@ -36,14 +36,14 @@ jobs:
- '1.11-nightly'
- 'nightly'
group: [ 'short', 'long' ]
os:
- [Linux, RPTU]
os: [Linux]
hosted: [RPTU]
depwarn: [ '' ]
include:
# Add a single job per group with deprecation errors on the most recent stable julia version
- julia-version: '1.10'
group: 'short'
os: [Linux, RPTU]
os: [Linux, RPTU, high-memory]
depwarn: 'depwarn=error'
- julia-version: '1.10'
group: 'long'
Expand Down

0 comments on commit 082178d

Please sign in to comment.