From a873309d12c6904f2bb4edc21a69851315a8ef3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robin=20Lind=C3=A9n?= Date: Sat, 28 May 2022 16:07:05 +0200 Subject: [PATCH] Run Linux CI on Ubuntu 22.04 --- .github/workflows/ci.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 092a1ca..c76c708 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -16,32 +16,32 @@ jobs: matrix: include: - name: gcc-static - os: ubuntu-20.04 + os: ubuntu-22.04 compiler: gcc generator: Ninja cmake-args: "-DBUILD_SHARED_LIBS=OFF" - name: gcc-dynamic - os: ubuntu-20.04 + os: ubuntu-22.04 compiler: gcc generator: Ninja cmake-args: "-DBUILD_SHARED_LIBS=ON" - name: gcc-minimal - os: ubuntu-20.04 + os: ubuntu-22.04 compiler: gcc generator: Ninja cmake-args: "-DSODIUM_MINIMAL=ON" - name: clang-static - os: ubuntu-20.04 + os: ubuntu-22.04 compiler: clang generator: Ninja cmake-args: "-DBUILD_SHARED_LIBS=OFF" - name: clang-dynamic - os: ubuntu-20.04 + os: ubuntu-22.04 compiler: clang generator: Ninja cmake-args: "-DBUILD_SHARED_LIBS=ON" - name: clang-minimal - os: ubuntu-20.04 + os: ubuntu-22.04 compiler: clang generator: Ninja cmake-args: "-DSODIUM_MINIMAL=ON"