Skip to content

Commit f22b48c

Browse files
[CI] Fixed More things
1 parent ed49a35 commit f22b48c

File tree

1 file changed

+10
-17
lines changed

1 file changed

+10
-17
lines changed

.github/workflows/test.yml

Lines changed: 10 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,6 @@ jobs:
7272
path: build.tar.gz
7373
retention-days: 1
7474

75-
# FIXME: This is not needed. Remove.
76-
- name: Print CCache Statistics
77-
run: |
78-
ccache -s
79-
8075

8176
BuildVTRWithOdin:
8277
name: 'B: Building VTR Release With Odin'
@@ -117,10 +112,6 @@ jobs:
117112
path: build.tar.gz
118113
retention-days: 1
119114

120-
- name: Print CCache Statistics
121-
run: |
122-
ccache -s
123-
124115

125116
Format:
126117
runs-on: ubuntu-24.04
@@ -186,15 +177,19 @@ jobs:
186177
- name: Install dependencies
187178
run: ./.github/scripts/install_dependencies.sh
188179

189-
- name: 'ccache'
190-
uses: hendrikmuhs/[email protected]
180+
- name: Download Build Artifact
181+
uses: actions/download-artifact@v4
182+
with:
183+
name: build-release.tar.gz
184+
185+
- name: Unpack Build
186+
shell: bash
187+
run: |
188+
tar -xvzf build.tar.gz
191189
192190
- name: Test
193-
env:
194-
CMAKE_PARAMS: "-DVTR_ASSERT_LEVEL=3"
195-
NUM_PROC: ${{ steps.cpu-cores.outputs.count }}
196191
run: |
197-
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
192+
cd build
198193
make test -j${{ steps.cpu-cores.outputs.count }}
199194
200195
@@ -203,7 +198,6 @@ jobs:
203198
# that these build variations are warning clean.
204199
BuildVariations:
205200
runs-on: ubuntu-24.04
206-
needs: [BuildVTR]
207201
name: 'B: Build Variations'
208202
env:
209203
# For the CI, we want all build variations to be warning clean.
@@ -460,7 +454,6 @@ jobs:
460454
461455
Sanitized:
462456
runs-on: ubuntu-24.04
463-
needs: [BuildVTRWithOdin]
464457
strategy:
465458
fail-fast: false
466459
matrix:

0 commit comments

Comments
 (0)