diff options
author | Jon Haitz Legarreta GorroƱo <jon.haitz.legarreta@gmail.com> | 2021-10-13 09:58:41 -0400 |
---|---|---|
committer | Hans Kristian Rosbach <hk-github@circlestorm.org> | 2021-12-24 12:52:14 +0100 |
commit | 49b531bb8364aa76a33aef8e23cd3d9b5f71d139 (patch) | |
tree | 10ff29d41a6855a6b30c590935dd8a9b38d99645 | |
parent | 432d00de0cdce53abc1cc24e78ae047482c26d3d (diff) |
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/
-rw-r--r-- | .github/workflows/cmake.yml | 8 | ||||
-rw-r--r-- | .github/workflows/configure.yml | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index edbc528..987fc43 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 @@ -259,8 +259,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 c3bc867..1c61be0 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 |