Skip to content

Commit 1c7f5d6

Browse files
committed
try fixing broken artifact on windows by deleting it
1 parent 0e27d3d commit 1c7f5d6

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/test-smokes.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,13 +185,19 @@ jobs:
185185
run: echo "QUARTO_JULIA_PROJECT=$GITHUB_WORKSPACE/qnr" >> $GITHUB_ENV
186186
shell: bash
187187

188+
- name: Cache Julia Packages
189+
uses: julia-actions/cache@v2
190+
191+
- name: delete libcharset-1.dll to fix cache
192+
if: runner.os == 'Windows'
193+
run: |
194+
rm -f "C:/Users/runneradmin/.julia/artifacts/1da3b3a2698813adf2b925c46aa2d68ec8474449/bin/libcharset-1.dll"
195+
shell: bash
196+
188197
- name: Instantiate QuartoNotebookRunner
189198
run: julia --project=$GITHUB_WORKSPACE/qnr -e 'using Pkg; Pkg.update()'
190199
shell: bash
191200

192-
- name: Cache Julia Packages
193-
uses: julia-actions/cache@v2
194-
195201
- name: Restore Julia Packages
196202
working-directory: tests
197203
shell: bash

0 commit comments

Comments
 (0)