Skip to content

Commit b1e4116

Browse files
committed
ci: Use Ubuntu 22.04
This commit updates the CI workflows to use the GitHub Ubuntu 22.04 virtual environment for running jobs. Signed-off-by: Stephanos Ioannidis <[email protected]>
1 parent 006f16d commit b1e4116

22 files changed

+23
-25
lines changed

.github/workflows/backport.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
backport:
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-22.04
1313
name: Backport
1414
steps:
1515
- name: Backport

.github/workflows/bsim-tests-publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
bsim-test-results:
1010
name: "Publish BabbleSim Test Results"
11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-22.04
1212
if: github.event.workflow_run.conclusion != 'skipped'
1313

1414
steps:

.github/workflows/bug_snapshot.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
jobs:
1717
make_bugs_pickle:
1818
name: Make bugs pickle
19-
runs-on: ubuntu-20.04
19+
runs-on: ubuntu-22.04
2020
if: github.repository_owner == 'zephyrproject-rtos'
2121

2222
steps:

.github/workflows/clang.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ jobs:
129129
clang-build-results:
130130
name: "Publish Unit Tests Results"
131131
needs: clang-build
132-
runs-on: ubuntu-20.04
132+
runs-on: ubuntu-22.04
133133
if: (success() || failure() ) && needs.clang-build.outputs.report_needed != 0
134134
steps:
135135
- name: Download Artifacts

.github/workflows/codecov.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111
codecov-results:
112112
name: "Publish Coverage Results"
113113
needs: codecov
114-
runs-on: ubuntu-20.04
114+
runs-on: ubuntu-22.04
115115
# the codecov job might be skipped, we don't need to run this job then
116116
if: success() || failure()
117117

.github/workflows/coding_guidelines.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: pull_request
44

55
jobs:
66
compliance_job:
7-
runs-on: ubuntu-20.04
7+
runs-on: ubuntu-22.04
88
name: Run coding guidelines checks on patch series (PR)
99
steps:
1010
- name: Checkout the code
@@ -28,9 +28,7 @@ jobs:
2828
- name: Install Packages
2929
run: |
3030
sudo apt-get update
31-
sudo apt-get install ocaml-base-nox
32-
wget https://launchpad.net/~npalix/+archive/ubuntu/coccinelle/+files/coccinelle_1.0.8~20.04npalix1_amd64.deb
33-
sudo dpkg -i coccinelle_1.0.8~20.04npalix1_amd64.deb
31+
sudo apt-get install coccinelle
3432
3533
- name: Run Coding Guildeines Checks
3634
continue-on-error: true

.github/workflows/compliance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: pull_request
44

55
jobs:
66
check_compliance:
7-
runs-on: ubuntu-20.04
7+
runs-on: ubuntu-22.04
88
name: Run compliance checks on patch series (PR)
99
steps:
1010
- name: Update PATH for west

.github/workflows/daily_test_version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
get_version:
15-
runs-on: ubuntu-20.04
15+
runs-on: ubuntu-22.04
1616
if: github.repository == 'zephyrproject-rtos/zephyr'
1717

1818
steps:

.github/workflows/devicetree_checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
strategy:
2828
matrix:
2929
python-version: [3.8, 3.9, '3.10']
30-
os: [ubuntu-20.04, macos-11, windows-2022]
30+
os: [ubuntu-22.04, macos-11, windows-2022]
3131
exclude:
3232
- os: macos-11
3333
python-version: 3.6

.github/workflows/do_not_merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
do-not-merge:
99
if: ${{ contains(github.event.*.labels.*.name, 'DNM') }}
1010
name: Prevent Merging
11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-22.04
1212
steps:
1313
- name: Check for label
1414
run: |

0 commit comments

Comments
 (0)