Skip to content

Commit 03fd73a

Browse files
committed
ci(gh-action)
1 parent a873399 commit 03fd73a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/actions/apt-fetch-clang/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ runs:
88
using: composite
99

1010
steps:
11-
- run: curl -s https://apt.llvm.org/llvm.sh | sudo bash -s ${{ inputs.llvm-ver }};
12-
shell: bash
13-
1411
- uses: awalsh128/cache-apt-pkgs-action@latest
1512
with:
1613
packages: clang-tidy-${{ inputs.llvm-ver }} clang-format-${{ inputs.llvm-ver }} libc++-${{ inputs.llvm-ver }}-dev libc++abi-${{ inputs.llvm-ver }}-dev clang-${{ inputs.llvm-ver }} llvm-${{ inputs.llvm-ver }} lld-${{ inputs.llvm-ver }} clangd-${{ inputs.llvm-ver }}
1714
version: ${{ inputs.llvm-ver }}
1815

16+
- run: curl -s https://apt.llvm.org/llvm.sh | sudo bash -s ${{ inputs.llvm-ver }};
17+
shell: bash
18+
1919
- run: |
2020
sudo apt-get install llvm-${{ inputs.llvm-ver }} clang-tidy-${{ inputs.llvm-ver }} clang-format-${{ inputs.llvm-ver }} libc++-${{ inputs.llvm-ver }}-dev libc++abi-${{ inputs.llvm-ver }}-dev clangd-${{ inputs.llvm-ver }};
2121
sudo update-alternatives --remove-all clang || true;

.github/actions/update-msvc/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ runs:
55

66
steps:
77
- run: |
8-
Start-Process -Wait -FilePath "C:\Program Files (x86)\Microsoft Visual Studio\Installer\vs_installer.exe" -ArgumentList "update --passive --norestart --installpath ""C:\Program Files\Microsoft Visual Studio\2022\Enterprise"""
8+
Start-Process -Wait -FilePath "C:\Program Files (x86)\Microsoft Visual Studio\Installer\setup.exe" -ArgumentList "update --passive --norestart --force --channelId VisualStudio.17.Release --installpath ""C:\Program Files\Microsoft Visual Studio\2022\Enterprise"""
99
shell: pwsh

0 commit comments

Comments
 (0)