Skip to content

Commit 7b068e4

Browse files
committed
fix: ignore failure on windows for v21
1 parent e3c4820 commit 7b068e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ jobs:
9999
- name: Unpack llvm-project
100100
shell: bash
101101
run: |
102-
# add --ignore-missing-links to ignore failure on v21 on windows
103-
tar xf ${{ matrix.release }}.tar.xz --ignore-missing-links ${{ matrix.extra-tar-args }}
102+
# ignore failure on v21 on windows
103+
tar xf ${{ matrix.release }}.tar.xz ${{ matrix.extra-tar-args }} || true
104104
- name: Patch trivially-copyable clang 9/10
105105
if: ${{ ( matrix.clang-version == 9 || matrix.clang-version == 10 ) && matrix.os == 'windows' }}
106106
shell: bash

0 commit comments

Comments
 (0)