Skip to content

Commit

Permalink
Fix runners (#1139)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcinz authored May 14, 2024
1 parent 8de3a95 commit a8259c5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/gh-build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
device: ${{ inputs.device }}
image: ${{ inputs.image }}
runs-on: ${{ github.repository_owner == 'nv-legate' && 'linux-amd64-32cpu' || 'ubuntu-latest' }}
runs-on: ${{ github.repository_owner == 'nv-legate' && 'linux-amd64-cpu32' || 'ubuntu-latest' }}

test:
needs:
Expand Down Expand Up @@ -52,13 +52,13 @@ jobs:

- name: OpenMP test
options: test --use openmp --omps 1 --ompthreads 2 --debug
runner: ${{ inputs.device == 'gpu' && 'linux-amd64-gpu-v100-latest-1' || 'linux-amd64-32cpu' }}
runner: ${{ inputs.device == 'gpu' && 'linux-amd64-gpu-v100-latest-1' || 'linux-amd64-cpu32' }}
has-gpu: ${{ inputs.device == 'gpu' }}
enabled: true

- name: 2 NUMA OpenMPs test
options: test --use openmp --omps 2 --ompthreads 2 --numamem 2048 --debug
runner: ${{ inputs.device == 'gpu' && 'linux-amd64-gpu-v100-latest-1' || 'linux-amd64-32cpu' }}
runner: ${{ inputs.device == 'gpu' && 'linux-amd64-gpu-v100-latest-1' || 'linux-amd64-cpu32' }}
has-gpu: ${{ inputs.device == 'gpu' }}
enabled: true

Expand All @@ -76,7 +76,7 @@ jobs:

- name: documentation
options: docs
runner: linux-amd64-32cpu
runner: linux-amd64-cpu4
has-gpu: false
enabled: ${{ inputs.device == 'gpu' }}

Expand Down

0 comments on commit a8259c5

Please sign in to comment.