From 4ea25b678e562c4e48f4299ebb24d6b28ae2f722 Mon Sep 17 00:00:00 2001 From: Florian Pommerening Date: Fri, 5 Jul 2024 14:20:47 +0200 Subject: [PATCH] update versions of tests --- .github/workflows/autodoc.yml | 2 +- .github/workflows/mac.yml | 4 ++-- .github/workflows/style.yml | 2 +- .github/workflows/ubuntu.yml | 7 +++---- 4 files changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/autodoc.yml b/.github/workflows/autodoc.yml index eef77cad07..36759a50e8 100644 --- a/.github/workflows/autodoc.yml +++ b/.github/workflows/autodoc.yml @@ -11,7 +11,7 @@ jobs: name: Autodoc if: github.repository == 'aibasel/downward' timeout-minutes: 60 - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 env: DOWNWARD_AUTODOC_PASSWORD: ${{ secrets.DOWNWARD_AUTODOC_PASSWORD }} steps: diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml index c79ba31447..cc7a95ab1d 100644 --- a/.github/workflows/mac.yml +++ b/.github/workflows/mac.yml @@ -15,8 +15,8 @@ jobs: strategy: matrix: version: - - {macos: macos-11, python: '3.8'} - - {macos: macos-12, python: '3.10'} + - {macos: macos-13, python: '3.10'} + - {macos: macos-14, python: '3.10'} steps: - name: Clone repository uses: actions/checkout@v3 diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml index 5fc5f6df83..35d23afd31 100644 --- a/.github/workflows/style.yml +++ b/.github/workflows/style.yml @@ -10,7 +10,7 @@ on: jobs: style: name: Test code style - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Clone repository uses: actions/checkout@v3 diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index a6a5d45ee4..ab9e9d99c1 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -20,11 +20,10 @@ jobs: strategy: matrix: version: - - {ubuntu: 'ubuntu-20.04', python: '3.8', cc: gcc-10, cxx: g++-10, run_tox_tests: true} - - {ubuntu: 'ubuntu-20.04', python: '3.8', cc: clang-12, cxx: clang++-12, run_tox_tests: false} - - {ubuntu: 'ubuntu-22.04', python: '3.10', cc: gcc-11, cxx: g++-11, run_tox_tests: false} - - {ubuntu: 'ubuntu-22.04', python: '3.10', cc: gcc-12, cxx: g++-12, run_tox_tests: true} + - {ubuntu: 'ubuntu-22.04', python: '3.10', cc: gcc-13, cxx: g++-13, run_tox_tests: true} - {ubuntu: 'ubuntu-22.04', python: '3.10', cc: clang-14, cxx: clang++-14, run_tox_tests: false} + - {ubuntu: 'ubuntu-24.04', python: '3.10', cc: gcc-14, cxx: g++-14, run_tox_tests: true} + - {ubuntu: 'ubuntu-24.04', python: '3.10', cc: clang-14, cxx: clang++-14, run_tox_tests: false} env: CC: ${{ matrix.version.cc }} CXX: ${{ matrix.version.cxx }}