Skip to content

Commit

Permalink
Switch CI over to Ubuntu 22.04
Browse files Browse the repository at this point in the history
The Qt version in Ubuntu 20.04 (5.12) is too old, and I don't want to figure
out how to enable backports.

See longturn#1198.
  • Loading branch information
lmoureaux committed Nov 13, 2022
1 parent 04a0878 commit b764cf1
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/automation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
apply-clang-format:
name: "Apply clang-format"
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
# Conditions for the action to run:
# - It must be a comment on a PR
# - The comment must contain "Auto clang-format"
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,9 @@ jobs:
needs: clang-format
strategy:
matrix:
os: [ubuntu-latest]
os: [ubuntu-22.04]
compiler: [gcc, clang]
build_type: ["", Release, Debug, RelWithDebInfo]
include:
- os: ubuntu-22.04
compiler: gcc
build_type: Debug
exclude:
- compiler: clang
build_type: RelWithDebInfo
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/clang-tidy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
# Codacy format.
name: Run clang-tidy
permissions: {} # Security: run cmake from a fully unprivileged context
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
with:
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
# minimize exposure.
name: Upload
needs: run
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/download-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverity.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
latest:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
jobs:
update-autorevision:
name: "Update AutoRevision"
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
with:
Expand All @@ -27,7 +27,7 @@ jobs:
delete-branch: true
update-archive:
name: "Update Source Archive"
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
with:
Expand Down

0 comments on commit b764cf1

Please sign in to comment.