Skip to content

Commit 1dab98d

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

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ 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:
@@ -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)