Skip to content

Commit

Permalink
specifies github runner images explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
christophkloeffel committed Oct 18, 2024
1 parent b22befc commit 0625122
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ jobs:
lint:
name: PyLint
needs: test
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip --break-system-packages
python3 -m pip install pylint==3.2.4 pycodestyle==2.12.0 --break-system-packages
python3 -m pip install --no-deps bmw-lobster-core bmw-lobster-tool-trlc --break-system-packages
python3 -m pip install --upgrade pip
python3 -m pip install pylint==3.2.4 pycodestyle==2.12.0
python3 -m pip install --no-deps bmw-lobster-core bmw-lobster-tool-trlc
- name: Executing linter
run: |
make lint
Expand All @@ -29,12 +29,12 @@ jobs:
if: success()
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
os: [ubuntu-24.04, windows-2022, macos-13, macos-14]
py-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
include:
- os: ubuntu-latest
- os: ubuntu-24.04
cvc5-plat: "linux"
- os: windows-latest
- os: windows-2022
cvc5-plat: "windows"
- os: macos-13
brew: "/usr/local"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
- name: Checkout
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

package:
name: Build
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
Expand All @@ -34,7 +34,7 @@ jobs:
upload-test:
name: PyPI Upload
needs: package
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
environment: release
permissions:
id-token: write
Expand Down

0 comments on commit 0625122

Please sign in to comment.