File tree Expand file tree Collapse file tree 1 file changed +10
-17
lines changed Expand file tree Collapse file tree 1 file changed +10
-17
lines changed Original file line number Diff line number Diff line change 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 :
You can’t perform that action at this time.
0 commit comments