Skip to content

Commit f1fb5d9

Browse files
authored
Merge pull request #290 from rapidsai/rm-a100-conditional
Remove `a100` conditional for proxy cache
2 parents f18ff46 + 1a72384 commit f1fb5d9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/conda-cpp-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ jobs:
147147
uses: nv-gha-runners/setup-proxy-cache@main
148148
continue-on-error: true
149149
# Skip the cache on RDS Lab nodes
150-
if: ${{ matrix.GPU != 'v100' && matrix.GPU != 'a100' }}
150+
if: ${{ matrix.GPU != 'v100' }}
151151

152152
- name: C++ tests
153153
run: ${{ inputs.script }}

.github/workflows/conda-python-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ jobs:
153153
uses: nv-gha-runners/setup-proxy-cache@main
154154
continue-on-error: true
155155
# Skip the cache on RDS Lab nodes
156-
if: ${{ matrix.GPU != 'v100' && matrix.GPU != 'a100' }}
156+
if: ${{ matrix.GPU != 'v100' }}
157157

158158
- name: Python tests
159159
run: ${{ inputs.script }}

.github/workflows/wheels-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ jobs:
163163
uses: nv-gha-runners/setup-proxy-cache@main
164164
continue-on-error: true
165165
# Skip the cache on RDS Lab nodes
166-
if: ${{ matrix.GPU != 'v100' && matrix.GPU != 'a100' }}
166+
if: ${{ matrix.GPU != 'v100' }}
167167

168168
- name: Run tests
169169
run: ${{ inputs.script }}

0 commit comments

Comments
 (0)