Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

specifies github runner images explicitly #111

Merged
merged 1 commit into from
Oct 18, 2024
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
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
Loading