Skip to content

Commit

Permalink
chore(ci): temporarily move to Ubuntu 20.04 to circumvent cache issue…
Browse files Browse the repository at this point in the history
…s in main (#5005)
  • Loading branch information
jkomyno authored Sep 24, 2024
1 parent 06fc58a commit 36cb94e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/test-query-engine-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ jobs:
PRISMA_ENGINE_PROTOCOL: ${{ matrix.engine_protocol }}
PRISMA_RELATION_LOAD_STRATEGY: ${{ matrix.relation_load_strategy }}

runs-on: "ubuntu-${{ inputs.ubuntu }}"
runs-on: "ubuntu-20.04"
# TODO: Replace with the following once `prisma@5.20.0` is released.
# runs-on: "ubuntu-${{ inputs.ubuntu }}"
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test-schema-engine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,9 @@ jobs:
is_vitess: true
single_threaded: true

runs-on: "ubuntu-${{ matrix.database.ubuntu || 'latest' }}"
runs-on: "ubuntu-20.04"
# TODO: Replace with the following once `prisma@5.20.0` is released.
# runs-on: "ubuntu-${{ matrix.database.ubuntu || 'latest' }}"
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
Expand Down

0 comments on commit 36cb94e

Please sign in to comment.