Skip to content

Commit d10f839

Browse files
committed
ci(toolchains): remove second docker-cache artifact write
Newer action versions complain about the name being the same. There is not much to cache in the second run, regardless.
1 parent 4e1ca62 commit d10f839

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

.github/workflows/toolchains.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -70,20 +70,9 @@ jobs:
7070
if [[ -e ./docker-cache/itk-wasm-emscripten-base.tar.xz ]]; then xz -d -k < ./docker-cache/itk-wasm-emscripten-base.tar.xz | docker load ; fi
7171
if [[ -e ./docker-cache/itk-wasm-emscripten.tar.xz ]]; then xz -d -k < ./docker-cache/itk-wasm-emscripten.tar.xz | docker load ; fi
7272
./src/docker/itk-wasm/build.sh
73-
mkdir -p ./docker-cache
74-
docker save itkwasm/emscripten:latest | xz -e9 -T0 > ./docker-cache/itk-wasm-emscripten.tar.xz
7573
7674
- name: Build itk-wasi
7775
run: |
7876
if [[ -e ./docker-cache/itk-wasm-wasi-base.tar.xz ]]; then xz -d -k < ./docker-cache/itk-wasm-wasi-base.tar.xz | docker load ; fi
7977
if [[ -e ./docker-cache/itk-wasm-wasi.tar.xz ]]; then xz -d -k < ./docker-cache/itk-wasm-wasi.tar.xz | docker load ; fi
8078
./src/docker/itk-wasm/build.sh --with-wasi
81-
mkdir -p ./docker-cache
82-
docker save itkwasm/wasi:latest | xz -e9 -T0 > ./docker-cache/itk-wasm-wasi.tar.xz
83-
84-
- name: Cache docker results
85-
uses: actions/upload-artifact@v4
86-
with:
87-
name: docker-cache
88-
path: ./docker-cache
89-
retention-days: 7

0 commit comments

Comments
 (0)