Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ jobs:
strategy:
matrix:
include:
- os: ubuntu-20.04
- os: ubuntu-24.04
target: x86_64-unknown-linux-gnu
- os: windows-2022
target: x86_64-pc-windows-msvc
- os: macOS-latest
target: x86_64-apple-darwin
- os: ubuntu-20.04
- os: ubuntu-24.04
target: aarch64-linux-android
host: x86_64-unknown-linux-gnu
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -117,14 +117,14 @@ jobs:
# This just allows us to branch protect on this one job rather needing to change
# it if the test matrix changes
test_success:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: test
steps:
- run: echo "All test jobs passed"

lint:
name: Lint
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
# Note that we are explicitly NOT checking out submodules, to validate
# that we haven't accidentally enabled spirv-tools native compilation
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
run: .github/workflows/lint.sh

cargo-deny:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: EmbarkStudios/cargo-deny-action@v2