From 73d2d47ca7e89e1d60ed7fee9a8229a94e04be5a Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Tue, 10 May 2022 14:58:14 +0200 Subject: [PATCH] =?UTF-8?q?Run=20the=20CI=C2=A0on=20Ubuntu=20Bionic=20and?= =?UTF-8?q?=20Fedora=2035?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Xenial and f31 are eol --- .github/workflows/ci.yml | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 68ca71ea3..cf2f82a58 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,7 +47,6 @@ jobs: name: - native_static - native_dyn - - native_dyn_bionic - android_arm - android_arm64 - win32_static @@ -55,31 +54,27 @@ jobs: include: - name: native_static target: native_static - image_variant: xenial + image_variant: bionic lib_postfix: '/x86_64-linux-gnu' - name: native_dyn - target: native_dyn - image_variant: xenial - lib_postfix: '/x86_64-linux-gnu' - - name: native_dyn_bionic target: native_dyn image_variant: bionic lib_postfix: '/x86_64-linux-gnu' - name: android_arm target: android_arm - image_variant: xenial + image_variant: bionic lib_postfix: '/x86_64-linux-gnu' - name: android_arm64 target: android_arm64 - image_variant: xenial + image_variant: bionic lib_postfix: '/x86_64-linux-gnu' - name: win32_static target: win32_static - image_variant: f31 + image_variant: f35 lib_postfix: '64' - name: win32_dyn target: win32_dyn - image_variant: f31 + image_variant: f35 lib_postfix: '64' env: HOME: /home/runner @@ -149,6 +144,6 @@ jobs: curl https://codecov.io/bash -o codecov.sh bash codecov.sh -n "${OS_NAME}_${{matrix.target}}" -Z rm codecov.sh - if: startsWith(matrix.target, 'native_') && matrix.image_variant == 'xenial' + if: startsWith(matrix.target, 'native_') env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}