Skip to content

Commit 0c28482

Browse files
committed
Bump to ubuntu 24
Allow to use GCC 14
1 parent 0d60c5e commit 0c28482

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ jobs:
2323
echo ::set-output name=matrix::${VERSIONSARRAY}
2424
build:
2525
needs: commontasks
26-
runs-on: ubuntu-22.04
26+
runs-on: ubuntu-latest
2727
strategy:
2828
fail-fast: false
2929
matrix:
30-
kernel_version: ${{fromJson(needs.commontasks.outputs.matrix)}}
31-
# kernel_version: [6.1-rc1]
30+
# kernel_version: ${{fromJson(needs.commontasks.outputs.matrix)}}
31+
kernel_version: [6.14-rc3]
3232
steps:
3333
- name: Download kernel packages
3434
run: |
@@ -45,8 +45,8 @@ jobs:
4545
run: sudo dpkg --force-all -i *.deb
4646
- name: update GCC
4747
run: |
48-
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 12
49-
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 12
48+
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-14 14
49+
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-14 14
5050
- uses: actions/checkout@v2
5151
- name: build kernel ${{ matrix.kernel_version }}
5252
run: make KVER=$KVER CC=cc

0 commit comments

Comments
 (0)