@@ -12,13 +12,13 @@ jobs:
1212 strategy :
1313 matrix :
1414 include :
15- - os : ubuntu-latest
15+ - os : ubuntu-20.04
1616 target : x86_64-unknown-linux-gnu
1717 - os : windows-latest
1818 target : x86_64-pc-windows-msvc
1919 - os : macOS-latest
2020 target : x86_64-apple-darwin
21- - os : ubuntu-latest
21+ - os : ubuntu-20.04
2222 target : aarch64-linux-android
2323 runs-on : ${{ matrix.os }}
2424 env :
3232 run : |
3333 sudo apt install libwayland-cursor0 libxkbcommon-dev libwayland-dev
3434 mkdir "${HOME}/spirv-tools"
35- curl -fL https://storage.googleapis.com/spirv-tools/artifacts/prod/graphics_shader_compiler/spirv-tools/linux-clang-release/continuous/1305/20201026-063148 /install.tgz | tar -xz -C "${HOME}/spirv-tools"
35+ curl -fL https://storage.googleapis.com/spirv-tools/artifacts/prod/graphics_shader_compiler/spirv-tools/linux-clang-release/continuous/1409/20210313-175801 /install.tgz | tar -xz -C "${HOME}/spirv-tools"
3636 echo "${HOME}/spirv-tools/install/bin" >> $GITHUB_PATH
3737 - if : ${{ runner.os == 'macOS' }}
3838 name : Mac - Install spirv-tools
4545 run : |
4646 tmparch=$(mktemp)
4747 mkdir "${HOME}/spirv-tools"
48- curl -fL -o "$tmparch" https://storage.googleapis.com/spirv-tools/artifacts/prod/graphics_shader_compiler/spirv-tools/windows-msvc-2017-release/continuous/1232/20200928-085551 /install.zip
48+ curl -fL -o "$tmparch" https://storage.googleapis.com/spirv-tools/artifacts/prod/graphics_shader_compiler/spirv-tools/windows-msvc-2017-release/continuous/1391/20210313-183536 /install.zip
4949 unzip "$tmparch" -d "${HOME}/spirv-tools"
5050 - if : ${{ runner.os == 'Windows' }}
5151 # Runs separately to add spir-v tools to Powershell's Path.
7777
7878 lint :
7979 name : Lint
80- runs-on : ubuntu-latest
80+ runs-on : ubuntu-20.04
8181 steps :
8282 # Note that we are explicitly NOT checking out submodules, to validate
8383 # that we haven't accidentally enabled spirv-tools native compilation
9090 - name : Install spirv-tools
9191 run : |
9292 mkdir "${HOME}/spirv-tools"
93- curl -fL https://storage.googleapis.com/spirv-tools/artifacts/prod/graphics_shader_compiler/spirv-tools/linux-clang-release/continuous/1305/20201026-063148 /install.tgz | tar -xz -C "${HOME}/spirv-tools"
93+ curl -fL https://storage.googleapis.com/spirv-tools/artifacts/prod/graphics_shader_compiler/spirv-tools/linux-clang-release/continuous/1409/20210313-175801 /install.tgz | tar -xz -C "${HOME}/spirv-tools"
9494 echo "${HOME}/spirv-tools/install/bin" >> $GITHUB_PATH
9595 - name : Install rustup components
9696 run : rustup component add rustfmt clippy
@@ -102,7 +102,7 @@ jobs:
102102 run : .github/workflows/clippy.sh
103103
104104 cargo-deny :
105- runs-on : ubuntu-latest
105+ runs-on : ubuntu-20.04
106106 steps :
107107 - uses : actions/checkout@v2
108108 - uses : EmbarkStudios/cargo-deny-action@v1
0 commit comments