Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/eb_command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,14 @@ concurrency:

jobs:
test-eb:
runs-on: ubuntu-22.04
strategy:
matrix:
python: [3.7, 3.8, 3.9, '3.10', '3.11', '3.12', '3.13']
python: [3.8, 3.9, '3.10', '3.11', '3.12', '3.13']
include:
- python: 3.7
os: ubuntu-22.04
fail-fast: false
runs-on: ${{matrix.os || 'ubuntu-24.04'}}
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2

Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,14 @@ concurrency:

jobs:
python-linting:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, '3.10', '3.11', '3.12', '3.13']
python: [3.8, 3.9, '3.10', '3.11', '3.12', '3.13']
include:
- python: 3.7
os: ubuntu-22.04
fail-fast: false
runs-on: ${{matrix.os || 'ubuntu-24.04'}}
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ concurrency:

jobs:
setup:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
outputs:
lmod8: Lmod-8.7.58
modules4: modules-4.5.3
Expand All @@ -20,7 +20,7 @@ jobs:
- run: "true"
build:
needs: setup
runs-on: ubuntu-20.04
runs-on: ${{matrix.os || 'ubuntu-24.04'}}
strategy:
matrix:
# Python 3.10 is default in Ubuntu 22.04
Expand All @@ -31,11 +31,11 @@ jobs:
- ${{needs.setup.outputs.lmod8}}
- ${{needs.setup.outputs.modules4}}
- ${{needs.setup.outputs.modules5}}
lc_all: [""]
include:
# Test different Python 3 versions with Lmod 8.x (with both Lua and Tcl module syntax)
- python: '3.7'
modules_tool: ${{needs.setup.outputs.lmod8}}
os: ubuntu-22.04
- python: '3.8'
modules_tool: ${{needs.setup.outputs.lmod8}}
- python: '3.9'
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
- name: run test suite
env:
EB_VERBOSE: 1
LC_ALL: ${{matrix.lc_all}}
LC_ALL: ""
run: |
# run tests *outside* of checked out easybuild-framework directory,
# to ensure we're testing installed version (see previous step)
Expand Down
Loading