Skip to content

Commit fb13918

Browse files
lyakhkv2019i
authored andcommitted
ci: switch to ubuntu 24.04 for build tests
clang from Ubuntu 22.04 is too old for the current Zephyr, switch to 24.04 for the "stub-build" CI test. Signed-off-by: Guennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com>
1 parent 64f73c7 commit fb13918

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/build_all.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on: [pull_request, workflow_dispatch, workflow_call]
1111
jobs:
1212

1313
stub-build:
14-
runs-on: ubuntu-22.04
14+
runs-on: ubuntu-24.04
1515
strategy:
1616
matrix:
1717
# Keep these names short due to questionable Github UI choices
@@ -38,7 +38,7 @@ jobs:
3838
libasan8:i386 libubsan1:i386 libquadmath0:i386 \
3939
4040
sudo apt-get -y install \
41-
libc6-dev-i386 libstdc++-12-dev:i386
41+
libc6-dev-i386 libstdc++-14-dev:i386
4242
4343
- name: apt-get install build tools
4444
run:

.github/workflows/ipc_fuzzer.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ on:
2525
jobs:
2626

2727
simple-IPC-fuzz_sh:
28-
runs-on: ubuntu-22.04
28+
runs-on: ubuntu-24.04
2929
strategy:
3030
fail-fast: false
3131
matrix:
@@ -53,7 +53,7 @@ jobs:
5353
libasan8:i386 libubsan1:i386 libquadmath0:i386 \
5454
5555
sudo apt-get -y install \
56-
libc6-dev-i386 libstdc++-12-dev:i386
56+
libc6-dev-i386 libstdc++-14-dev:i386
5757
5858
- name: apt-get install build tools
5959
run:

.github/workflows/sparse-zephyr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
# We're sharing the sparse binary with the zephyr-build container so keep
1919
# this in sync with it.
20-
runs-on: ubuntu-22.04
20+
runs-on: ubuntu-24.04
2121

2222
strategy:
2323
fail-fast: false

.github/workflows/zephyr-unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ concurrency:
1717
jobs:
1818
zephyr-utests:
1919
name: Zephyr Unit Tests (ZTest)
20-
runs-on: ubuntu-22.04
20+
runs-on: ubuntu-24.04
2121
timeout-minutes: 10
2222

2323
steps:

0 commit comments

Comments
 (0)