From b42ad1001bef0d532446633774a9380763a9134d Mon Sep 17 00:00:00 2001 From: Davide Gerhard Date: Thu, 26 May 2022 07:37:13 +0200 Subject: [PATCH] github actions: remove ubuntu 18.04; add ubuntu 22.04 --- .github/workflows/ci.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9568ccd..95254bf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -62,6 +62,15 @@ jobs: build_type: 'Debug', cmake_extra_flags: '' } + - { + name: 'Ubuntu 22.04', + os: ubuntu-22.04, + cc: 'gcc', + cxx: 'g++', + arch: 'x86_64', + build_type: 'Release', + cmake_extra_flags: '' + } - { name: 'Ubuntu 20.04', os: ubuntu-20.04, @@ -80,15 +89,6 @@ jobs: build_type: 'Release', cmake_extra_flags: '' } - - { - name: 'Ubuntu 16.04', - os: ubuntu-16.04, - cc: 'gcc', - cxx: 'g++', - arch: 'x86_64', - build_type: 'Release', - cmake_extra_flags: '' - } steps: - name: checkout uses: actions/checkout@v2