diff options
author | dundargoc <gocdundar@gmail.com> | 2025-02-13 23:17:40 +0100 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2025-02-14 14:54:18 +0100 |
commit | c091bc3b9abc220fa5d512966d89893f56f20691 (patch) | |
tree | 84781a589baf7a631081a8f78ae7a5dbee091a14 | |
parent | cff5fa49fc5a71e00fe5f7b59e6584a825c1a8b8 (diff) | |
download | rneovim-c091bc3b9abc220fa5d512966d89893f56f20691.tar.gz rneovim-c091bc3b9abc220fa5d512966d89893f56f20691.tar.bz2 rneovim-c091bc3b9abc220fa5d512966d89893f56f20691.zip |
ci(release): change to ubuntu-22.04
Ubuntu 20.04 is deprecated.
-rw-r--r-- | .github/workflows/release.yml | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9f26e667f7..2a9dad5875 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,6 @@ on: - v[0-9]+.[0-9]+.[0-9]+ # Build on the oldest supported images, so we have broader compatibility -# Build with gcc-10 to prevent triggering #14150 (default is still gcc-9 on 20.04) jobs: setup: runs-on: ubuntu-latest @@ -43,12 +42,11 @@ jobs: strategy: fail-fast: false matrix: - runner: [ ubuntu-20.04, ubuntu-24.04-arm ] + runner: [ ubuntu-22.04, ubuntu-22.04-arm ] include: - - runner: ubuntu-20.04 + - runner: ubuntu-22.04 arch: x86_64 - cc: gcc-10 - - runner: ubuntu-24.04-arm + - runner: ubuntu-22.04-arm arch: arm64 runs-on: ${{ matrix.runner }} env: @@ -62,9 +60,8 @@ jobs: # Perform a full checkout #13471 fetch-depth: 0 - run: ./.github/scripts/install_deps.sh + - run: sudo apt-get install -y libfuse2 - run: echo "CMAKE_BUILD_TYPE=${{ needs.setup.outputs.build_type }}" >> $GITHUB_ENV - - if: matrix.arch == 'arm64' - run: sudo apt-get update && sudo apt-get install -y libfuse2t64 - name: appimage run: | ./scripts/genappimage.sh ${{ needs.setup.outputs.appimage_tag }} |