]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Remove Ubuntu 16.04 from CI
authorJoel Rosdahl <joel@rosdahl.net>
Tue, 15 Jun 2021 05:44:34 +0000 (07:44 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Tue, 15 Jun 2021 05:49:10 +0000 (07:49 +0200)
Ubuntu 16.04 has reached end of life already and GitHub Actions will
drop support for it soon anyway.

.github/workflows/build.yaml

index 07f2904642f7698c999feca2d7af809e6e27db80..4e2ea5984c1322ecb395b693f6604f0e29b089cd 100644 (file)
@@ -22,11 +22,11 @@ jobs:
       fail-fast: false
       matrix:
         config:
-          - os: ubuntu-16.04
+          - os: ubuntu-18.04
             compiler: gcc
             version: "4.8" # results in 4.8.5
 
-          - os: ubuntu-16.04
+          - os: ubuntu-18.04
             compiler: gcc
             version: "5"
 
@@ -50,11 +50,11 @@ jobs:
             compiler: gcc
             version: "10"
 
-          - os: ubuntu-16.04
+          - os: ubuntu-18.04
             compiler: clang
             version: "5.0"
 
-          - os: ubuntu-16.04
+          - os: ubuntu-18.04
             compiler: clang
             version: "6.0"
 
@@ -92,8 +92,8 @@ jobs:
             sudo apt-get update
 
             # Install ld.gold (binutils) and ld.lld on different runs.
-            if [ "${{ matrix.config.os }}" = "ubuntu-16.04" ]; then
-              sudo apt-get install -y ninja-build elfutils libzstd1-dev binutils
+            if [ "${{ matrix.config.os }}" = "ubuntu-18.04" ]; then
+              sudo apt-get install -y ninja-build elfutils libzstd-dev binutils
             else
               sudo apt-get install -y ninja-build elfutils libzstd-dev lld
             fi