Skip to content

Commit

Permalink
ci: Merge pull request #1136 from svinota/platform_versions
Browse files Browse the repository at this point in the history
ci: update platform versions

Bug-Url: #1136
  • Loading branch information
svinota authored Oct 28, 2023
2 parents a95dbaa + 8cb7a0d commit 10d432e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,17 @@ jobs:
- run: sudo chown -R $USER:$USER $GITHUB_WORKSPACE
- uses: actions/checkout@v4
- run: sudo make nox session=minimal
linux-fedora-35:
runs-on: linux-fedora-35
linux-fedora-38:
runs-on: linux-fedora-38
steps:
- run: sudo chown -R $USER:$USER $GITHUB_WORKSPACE
- uses: actions/checkout@v4
- run: sudo make nox session=linux-3.6
- run: sudo make nox session=linux-3.8
- run: sudo make nox session=linux-3.10
linux-ubuntu-18:
runs-on: linux-ubuntu-18
- run: sudo make nox session=linux-3.12
linux-ubuntu-22:
runs-on: linux-ubuntu-22
steps:
- run: sudo chown -R $USER:$USER $GITHUB_WORKSPACE
- uses: actions/checkout@v4
Expand Down
4 changes: 3 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
'neutron',
'integration',
'linux-3.6',
'linux-3.8',
'linux-3.10',
'linux-3.12',
'minimal',
]

Expand Down Expand Up @@ -243,7 +245,7 @@ def integration(session, config):
session.run(*options('test_integration', config))


@nox.session(python=['3.6', '3.10'])
@nox.session(python=['3.6', '3.8', '3.10', '3.12'])
@add_session_config
def linux(session, config):
'''Run Linux functional tests. Requires root to run all the tests.'''
Expand Down

0 comments on commit 10d432e

Please sign in to comment.