From 41ca68680ac28170381e59fba42e7381db48d89f Mon Sep 17 00:00:00 2001 From: Matthijs van der Burgh Date: Wed, 13 Sep 2023 17:24:11 +0200 Subject: [PATCH] (actions) also test ubuntu 22.04 (#448) --- .github/workflows/main.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 252d9535..0dc629bb 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,10 +12,15 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-20.04] + os: [ubuntu-20.04, ubuntu-22.04] orocos_build_type: [Debug, Release] compiler: [gcc, clang] - python_version: ['3.8'] + python_version: ['3.8', '3.10'] + exclude: + - os: ubuntu-20.04 + python_version: '3.10' + - os: ubuntu-22.04 + python_version: '3.8' include: - os: ubuntu-20.04 orocos_build_type: Release @@ -29,6 +34,10 @@ jobs: orocos_build_type: Release compiler: gcc python_version: '3.11' + - os: ubuntu-22.04 + orocos_build_type: Release + compiler: gcc + python_version: '3.11' env: CC: ${{ matrix.compiler }} OROCOS_BUILD_TYPE: ${{ matrix.orocos_build_type }}