1
0
mirror of https://github.com/Mange/rtl8192eu-linux-driver synced 2025-04-03 13:53:36 +00:00

Bump github actions to ubuntu 24

Allow to use GCC 14
This commit is contained in:
Carlos Garcés 2025-02-23 20:48:37 +00:00
parent 0d60c5e46a
commit 1dab98d4d3

@ -23,7 +23,7 @@ jobs:
echo ::set-output name=matrix::${VERSIONSARRAY} echo ::set-output name=matrix::${VERSIONSARRAY}
build: build:
needs: commontasks needs: commontasks
runs-on: ubuntu-22.04 runs-on: ubuntu-latest
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
@ -45,8 +45,8 @@ jobs:
run: sudo dpkg --force-all -i *.deb run: sudo dpkg --force-all -i *.deb
- name: update GCC - name: update GCC
run: | run: |
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 12 sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-14 14
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 12 sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-14 14
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: build kernel ${{ matrix.kernel_version }} - name: build kernel ${{ matrix.kernel_version }}
run: make KVER=$KVER CC=cc run: make KVER=$KVER CC=cc