From 4bcce70a5bf6115d1fbf6cc18fea8579cbe72ba1 Mon Sep 17 00:00:00 2001 From: Nic30 Date: Sun, 14 Jan 2024 11:44:50 +0100 Subject: [PATCH] Revert "ci: githubactions update to ubuntu 23.10" This reverts commit 15d8224a4cb83089e2c9d2cf63963e85c5785fe4. --- .github/workflows/build_and_release.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build_and_release.yml b/.github/workflows/build_and_release.yml index a13afd0e..ff9cd40e 100644 --- a/.github/workflows/build_and_release.yml +++ b/.github/workflows/build_and_release.yml @@ -8,14 +8,14 @@ permissions: jobs: # Create a Debug build and test it. build_and_test: - runs-on: ubuntu-23.10 + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v3 with: submodules: recursive - uses: actions/setup-python@v5 with: - python-version: "3.11" + python-version: "3.10" # Don't need to install Python / Create venv, as you are running in a container. # You don't even need to install g++/cmake as it comes with the docker image. @@ -63,8 +63,8 @@ jobs: strategy: matrix: - python-version: [ "3.9", "3.10", "3.11", "3.12" ] - runs-on: ubuntu-23.10 + python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12" ] + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v3 with: @@ -105,7 +105,7 @@ jobs: # Developer can still build on their machine with the source bundle # (i.e. the original `pip install` flow if the platform is not included by above steps) build_sdist: - runs-on: ubuntu-23.10 + runs-on: ubuntu-20.04 if: ${{ success() }} needs: @@ -117,7 +117,7 @@ jobs: submodules: recursive - uses: actions/setup-python@v5 with: - python-version: "3.11" + python-version: "3.9" - name: Install Dependencies run: | sudo apt update -y