Skip to content

Commit

Permalink
[ci] Fix CI runners
Browse files Browse the repository at this point in the history
Recently, the pytest and lintpy jobs were failing. The reason for
this is that we are running these jobs on the latest Ubuntu
version. However, we currently recommend using Ubuntu 22.04.
Hence, lets pick this runner for the CI jobs.

Closes lowRISC#388

Signed-off-by: Pascal Nasahl <[email protected]>
  • Loading branch information
nasahlpa committed Jan 16, 2025
1 parent 26a39dc commit 6b7cc48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lintpy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
# This workflow contains a single job called "lint"
lint:
# The type of runner that the job will run on
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
# This workflow contains a single job called "pytest"
pytest:
# The type of runner that the job will run on
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand Down

0 comments on commit 6b7cc48

Please sign in to comment.