From b18b428148b7ba841c36db4976b6c89e9d5ee1a5 Mon Sep 17 00:00:00 2001 From: Vasileios Karakasis Date: Tue, 17 Dec 2024 14:47:53 +0100 Subject: [PATCH] Update GH actions for Python 3.7 after the move of runners to Ubuntu 24.04 --- .github/workflows/main.yml | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 62447430d..0e941f242 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} @@ -46,6 +46,24 @@ jobs: run: | ./test_reframe.py + unittest-py37: + runs-on: ubuntu-22.04 + strategy: + matrix: + python-version: ['3.7'] + steps: + - uses: actions/checkout@v4 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies and docs + run: | + ./bootstrap.sh +docs + - name: Generic Unittests + run: | + ./test_reframe.py + unittest-macos: runs-on: macos-latest strategy: @@ -120,7 +138,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] steps: - uses: actions/checkout@v4 - name: Setup up Python ${{ matrix.python-version }} @@ -143,7 +161,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }}