Install alternative curl to maybe avoid flaky auto certification revocation
This commit is contained in:
parent
4d3465c5ae
commit
d37d309335
1 changed files with 40 additions and 10 deletions
50
.github/workflows/build.yml
vendored
50
.github/workflows/build.yml
vendored
|
@ -693,6 +693,14 @@ jobs:
|
||||||
- name: Clone
|
- name: Clone
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Install Deps
|
||||||
|
run: |
|
||||||
|
choco install curl
|
||||||
|
|
||||||
|
- name: Check curl version
|
||||||
|
run: |
|
||||||
|
curl --version
|
||||||
|
|
||||||
- name: ccache
|
- name: ccache
|
||||||
uses: hendrikmuhs/ccache-action@v1.2.16
|
uses: hendrikmuhs/ccache-action@v1.2.16
|
||||||
with:
|
with:
|
||||||
|
@ -768,6 +776,14 @@ jobs:
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Install Deps
|
||||||
|
run: |
|
||||||
|
choco install ninja curl
|
||||||
|
|
||||||
|
- name: Check curl version
|
||||||
|
run: |
|
||||||
|
curl --version
|
||||||
|
|
||||||
- name: ccache
|
- name: ccache
|
||||||
uses: hendrikmuhs/ccache-action@v1.2.16
|
uses: hendrikmuhs/ccache-action@v1.2.16
|
||||||
with:
|
with:
|
||||||
|
@ -803,11 +819,6 @@ jobs:
|
||||||
Add-Content $env:GITHUB_ENV "VULKAN_SDK=C:\VulkanSDK\${env:VULKAN_VERSION}"
|
Add-Content $env:GITHUB_ENV "VULKAN_SDK=C:\VulkanSDK\${env:VULKAN_VERSION}"
|
||||||
Add-Content $env:GITHUB_PATH "C:\VulkanSDK\${env:VULKAN_VERSION}\bin"
|
Add-Content $env:GITHUB_PATH "C:\VulkanSDK\${env:VULKAN_VERSION}\bin"
|
||||||
|
|
||||||
- name: Install Ninja
|
|
||||||
id: install_ninja
|
|
||||||
run: |
|
|
||||||
choco install ninja
|
|
||||||
|
|
||||||
- name: Install OpenCL Headers and Libs
|
- name: Install OpenCL Headers and Libs
|
||||||
id: install_opencl
|
id: install_opencl
|
||||||
if: ${{ matrix.build == 'llvm-arm64-opencl-adreno' }}
|
if: ${{ matrix.build == 'llvm-arm64-opencl-adreno' }}
|
||||||
|
@ -953,6 +964,14 @@ jobs:
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Install Deps
|
||||||
|
run: |
|
||||||
|
choco install ninja curl
|
||||||
|
|
||||||
|
- name: Check curl version
|
||||||
|
run: |
|
||||||
|
curl --version
|
||||||
|
|
||||||
- name: Install ccache
|
- name: Install ccache
|
||||||
uses: hendrikmuhs/ccache-action@v1.2.16
|
uses: hendrikmuhs/ccache-action@v1.2.16
|
||||||
with:
|
with:
|
||||||
|
@ -1016,11 +1035,6 @@ jobs:
|
||||||
echo "CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.4" | Out-File -FilePath $env:GITHUB_ENV -Append -Encoding utf8
|
echo "CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.4" | Out-File -FilePath $env:GITHUB_ENV -Append -Encoding utf8
|
||||||
echo "CUDA_PATH_V12_4=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.4" | Out-File -FilePath $env:GITHUB_ENV -Append -Encoding utf8
|
echo "CUDA_PATH_V12_4=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.4" | Out-File -FilePath $env:GITHUB_ENV -Append -Encoding utf8
|
||||||
|
|
||||||
- name: Install Ninja
|
|
||||||
id: install_ninja
|
|
||||||
run: |
|
|
||||||
choco install ninja
|
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
id: cmake_build
|
id: cmake_build
|
||||||
shell: cmd
|
shell: cmd
|
||||||
|
@ -1095,6 +1109,14 @@ jobs:
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Install Deps
|
||||||
|
run: |
|
||||||
|
choco install curl
|
||||||
|
|
||||||
|
- name: Check curl version
|
||||||
|
run: |
|
||||||
|
curl --version
|
||||||
|
|
||||||
- name: ccache
|
- name: ccache
|
||||||
uses: hendrikmuhs/ccache-action@v1.2.16
|
uses: hendrikmuhs/ccache-action@v1.2.16
|
||||||
with:
|
with:
|
||||||
|
@ -1214,6 +1236,14 @@ jobs:
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Install Deps
|
||||||
|
run: |
|
||||||
|
choco install curl
|
||||||
|
|
||||||
|
- name: Check curl version
|
||||||
|
run: |
|
||||||
|
curl --version
|
||||||
|
|
||||||
- name: ccache
|
- name: ccache
|
||||||
uses: hendrikmuhs/ccache-action@v1.2.16
|
uses: hendrikmuhs/ccache-action@v1.2.16
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue