Skip to content

Commit

Permalink
ci: update ubuntu version in ci workflow configurations
Browse files Browse the repository at this point in the history
- update the ubuntu version to `22.04` in various job configurations in the ci workflow
  • Loading branch information
falcucci committed Sep 19, 2024
1 parent 5f3b5d0 commit 1f7a45b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
os: [windows-latest, macos-latest, ubuntu-22.04]
toolchain: [stable, nightly]
steps:
- uses: actions/checkout@v4
Expand All @@ -42,7 +42,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
os: [windows-latest, macos-latest, ubuntu-22.04]
toolchain: [stable, nightly]
steps:
- uses: actions/checkout@v4
Expand All @@ -66,7 +66,7 @@ jobs:
event-upload:
needs: test
name: Upload Test Event
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/upload-artifact@v4
with:
Expand All @@ -79,7 +79,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
os: [windows-latest, macos-latest, ubuntu-22.04]
toolchain: [stable, nightly]
steps:
- uses: actions/checkout@v4
Expand All @@ -93,7 +93,7 @@ jobs:
toolchain: ${{ matrix.toolchain }}

- name: (linux) install vulkan sdk
if: matrix.os == 'ubuntu-latest'
if: matrix.os == 'ubuntu-22.04'
shell: bash
run: |
set -e
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
os: [windows-latest, macos-latest, ubuntu-22.04]
toolchain: [stable, nightly]
runs-on: ${{ matrix.os }}

Expand Down

0 comments on commit 1f7a45b

Please sign in to comment.