Skip to content

Commit d37d309

Browse files
author
ochafik
committed
Install alternative curl to maybe avoid flaky auto certification revocation
1 parent 4d3465c commit d37d309

File tree

1 file changed

+40
-10
lines changed

1 file changed

+40
-10
lines changed

.github/workflows/build.yml

Lines changed: 40 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -693,6 +693,14 @@ jobs:
693693
- name: Clone
694694
uses: actions/checkout@v4
695695

696+
- name: Install Deps
697+
run: |
698+
choco install curl
699+
700+
- name: Check curl version
701+
run: |
702+
curl --version
703+
696704
- name: ccache
697705
uses: hendrikmuhs/[email protected]
698706
with:
@@ -768,6 +776,14 @@ jobs:
768776
with:
769777
fetch-depth: 0
770778

779+
- name: Install Deps
780+
run: |
781+
choco install ninja curl
782+
783+
- name: Check curl version
784+
run: |
785+
curl --version
786+
771787
- name: ccache
772788
uses: hendrikmuhs/[email protected]
773789
with:
@@ -803,11 +819,6 @@ jobs:
803819
Add-Content $env:GITHUB_ENV "VULKAN_SDK=C:\VulkanSDK\${env:VULKAN_VERSION}"
804820
Add-Content $env:GITHUB_PATH "C:\VulkanSDK\${env:VULKAN_VERSION}\bin"
805821
806-
- name: Install Ninja
807-
id: install_ninja
808-
run: |
809-
choco install ninja
810-
811822
- name: Install OpenCL Headers and Libs
812823
id: install_opencl
813824
if: ${{ matrix.build == 'llvm-arm64-opencl-adreno' }}
@@ -953,6 +964,14 @@ jobs:
953964
with:
954965
fetch-depth: 0
955966

967+
- name: Install Deps
968+
run: |
969+
choco install ninja curl
970+
971+
- name: Check curl version
972+
run: |
973+
curl --version
974+
956975
- name: Install ccache
957976
uses: hendrikmuhs/[email protected]
958977
with:
@@ -1016,11 +1035,6 @@ jobs:
10161035
echo "CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.4" | Out-File -FilePath $env:GITHUB_ENV -Append -Encoding utf8
10171036
echo "CUDA_PATH_V12_4=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.4" | Out-File -FilePath $env:GITHUB_ENV -Append -Encoding utf8
10181037
1019-
- name: Install Ninja
1020-
id: install_ninja
1021-
run: |
1022-
choco install ninja
1023-
10241038
- name: Build
10251039
id: cmake_build
10261040
shell: cmd
@@ -1095,6 +1109,14 @@ jobs:
10951109
with:
10961110
fetch-depth: 0
10971111

1112+
- name: Install Deps
1113+
run: |
1114+
choco install curl
1115+
1116+
- name: Check curl version
1117+
run: |
1118+
curl --version
1119+
10981120
- name: ccache
10991121
uses: hendrikmuhs/[email protected]
11001122
with:
@@ -1214,6 +1236,14 @@ jobs:
12141236
with:
12151237
fetch-depth: 0
12161238

1239+
- name: Install Deps
1240+
run: |
1241+
choco install curl
1242+
1243+
- name: Check curl version
1244+
run: |
1245+
curl --version
1246+
12171247
- name: ccache
12181248
uses: hendrikmuhs/[email protected]
12191249
with:

0 commit comments

Comments
 (0)