From: Jon Haitz Legarreta GorroƱo Date: Wed, 13 Oct 2021 13:58:41 +0000 (-0400) Subject: ENH: Transition to Ubuntu 18.04 in `GitHub` actions workflows X-Git-Tag: 2.1.0-beta1~497 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=071e4da02377b05f5f4a5a1db9f07ea3507a5d9f;p=thirdparty%2Fzlib-ng.git ENH: Transition to Ubuntu 18.04 in `GitHub` actions workflows Transition to Ubuntu 18.04 in `GitHub` actions workflows. Fixes: ``` Ubuntu 16.04 Clang This request was automatically failed because there were no enabled runners online to process the request for more than 1 days. Ubuntu 16.04 GCC This request was automatically failed because there were no enabled runners online to process the request for more than 1 days. ``` reported for example at: https://github.com/zlib-ng/zlib-ng/actions/runs/1326434358 Official `GitHub` notice related to the removal of the 16.04 virtual environments: https://github.blog/changelog/2021-04-29-github-actions-ubuntu-16-04-lts-virtual-environment-will-be-removed-on-september-20-2021/ --- diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 267e84534..256a9eca4 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -8,8 +8,8 @@ jobs: fail-fast: false matrix: include: - - name: Ubuntu 16.04 GCC - os: ubuntu-16.04 + - name: Ubuntu 18.04 GCC + os: ubuntu-18.04 compiler: gcc - name: Ubuntu GCC @@ -290,8 +290,8 @@ jobs: # Limit parallel test jobs to prevent wine errors parallels-jobs: 1 - - name: Ubuntu 16.04 Clang - os: ubuntu-16.04 + - name: Ubuntu 18.04 Clang + os: ubuntu-18.04 compiler: clang-6.0 packages: clang-6.0 diff --git a/.github/workflows/configure.yml b/.github/workflows/configure.yml index cb404f537..4e64a8789 100644 --- a/.github/workflows/configure.yml +++ b/.github/workflows/configure.yml @@ -13,8 +13,8 @@ jobs: compiler: gcc configure-args: --warn - - name: Ubuntu 16.04 GCC - os: ubuntu-16.04 + - name: Ubuntu 18.04 GCC + os: ubuntu-18.04 compiler: gcc configure-args: --warn