Skip to content

Commit

Permalink
Merge pull request #33 from Gedochao/downgrade-ubuntu-ci
Browse files Browse the repository at this point in the history
Downgrade `ubuntu` to `20.04` on CI
  • Loading branch information
tgodzik authored Apr 25, 2023
2 parents c314495 + a200521 commit 4d2a8f0
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
jvm-tests:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -32,7 +32,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-20.04, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
if: github.event_name == 'push'

native-static-tests:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -88,7 +88,7 @@ jobs:
if: github.event_name == 'push'

native-mostly-static-tests:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -114,7 +114,7 @@ jobs:

upload-launchers:
needs: [format, jvm-tests, native-tests, native-static-tests, native-mostly-static-tests]
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v3
Expand All @@ -135,7 +135,7 @@ jobs:

format:
timeout-minutes: 15
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -151,7 +151,7 @@ jobs:
publish:
needs: [format, jvm-tests, native-tests, native-static-tests, native-mostly-static-tests]
if: github.event_name == 'push'
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
Expand Down

0 comments on commit 4d2a8f0

Please sign in to comment.