Skip to content

Use Ubuntu 22.04 in CI #1997

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

Merged
merged 1 commit into from
Oct 14, 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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:
jobs:
test_and_deploy:
name: Test and deploy
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout the source code
uses: actions/checkout@v4
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
"Opt",
]
name: Test benchmarks
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout the source code
uses: actions/checkout@v4
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:

test_backends:
name: Test codegen backend benchmarks
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout the source code
uses: actions/checkout@v4
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:

test_runtime_benchmarks:
name: Test runtime benchmarks
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout the source code
uses: actions/checkout@v4
Expand Down Expand Up @@ -288,7 +288,7 @@ jobs:

database-check:
name: Database Check
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
services:
postgres:
image: postgres
Expand Down Expand Up @@ -346,7 +346,7 @@ jobs:

site-endpoint:
name: Compare page endpoint test
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
services:
postgres:
image: postgres
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions:
jobs:
publish_release:
name: Publish release
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Set version
run: |
Expand Down
Loading