Skip to content

Commit fb2bd22

Browse files
committed
ci(release): change to ubuntu-22.04
Ubuntu 20.04 is deprecated.
1 parent 93480f7 commit fb2bd22

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/release.yml

+4-7
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ on:
1313
- v[0-9]+.[0-9]+.[0-9]+
1414

1515
# Build on the oldest supported images, so we have broader compatibility
16-
# Build with gcc-10 to prevent triggering #14150 (default is still gcc-9 on 20.04)
1716
jobs:
1817
setup:
1918
runs-on: ubuntu-latest
@@ -43,12 +42,11 @@ jobs:
4342
strategy:
4443
fail-fast: false
4544
matrix:
46-
runner: [ ubuntu-20.04, ubuntu-24.04-arm ]
45+
runner: [ ubuntu-22.04, ubuntu-22.04-arm ]
4746
include:
48-
- runner: ubuntu-20.04
47+
- runner: ubuntu-22.04
4948
arch: x86_64
50-
cc: gcc-10
51-
- runner: ubuntu-24.04-arm
49+
- runner: ubuntu-22.04-arm
5250
arch: arm64
5351
runs-on: ${{ matrix.runner }}
5452
env:
@@ -62,9 +60,8 @@ jobs:
6260
# Perform a full checkout #13471
6361
fetch-depth: 0
6462
- run: ./.github/scripts/install_deps.sh
63+
- run: sudo apt-get install -y libfuse2
6564
- run: echo "CMAKE_BUILD_TYPE=${{ needs.setup.outputs.build_type }}" >> $GITHUB_ENV
66-
- if: matrix.arch == 'arm64'
67-
run: sudo apt-get update && sudo apt-get install -y libfuse2t64
6865
- name: appimage
6966
run: |
7067
./scripts/genappimage.sh ${{ needs.setup.outputs.appimage_tag }}

0 commit comments

Comments
 (0)