Skip to content

Commit

Permalink
Update github ubuntu runner
Browse files Browse the repository at this point in the history
Image going to be depricated at 2025.04.01,
actions/runner-images#11101.
  • Loading branch information
dkropachev committed Mar 8, 2025
1 parent 7b6f2d4 commit b19c417
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:

jobs:
release:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
release:
name: Release
runs-on: ubuntu-22.04
runs-on: ubuntu-latest

permissions:
contents: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
- completed
jobs:
report:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
timeout-minutes: 5

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
- completed
jobs:
report:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
timeout-minutes: 5

steps:
Expand Down
19 changes: 7 additions & 12 deletions .github/workflows/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
build:
name: Build
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
timeout-minutes: 10

strategy:
Expand All @@ -33,7 +33,7 @@ jobs:

verify:
name: Full verify
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
timeout-minutes: 10

strategy:
Expand All @@ -56,7 +56,7 @@ jobs:

unit-tests:
name: Unit tests
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
timeout-minutes: 10

steps:
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:

setup-integration-tests:
name: Setup ITs
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
timeout-minutes: 2

steps:
Expand All @@ -113,7 +113,7 @@ jobs:

cassandra-integration-tests:
name: Cassandra ITs
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
needs: [setup-integration-tests]
timeout-minutes: 90

Expand All @@ -139,10 +139,8 @@ jobs:

- name: Setup environment
run: |
sudo sh -c "echo 'deb http://security.ubuntu.com/ubuntu xenial-security main' >> /etc/apt/sources.list"
sudo apt-get update
sudo apt-get install libssl1.0.0
pip3 install https://github.com/scylladb/scylla-ccm/archive/master.zip
sudo sh -c "echo 2097152 >> /proc/sys/fs/aio-max-nr"
- name: Run integration tests on Cassandra (${{ matrix.cassandra-version }})
run: mvn -B verify -Pshort -Dcassandra.version=${{ matrix.cassandra-version }} -Dfmt.skip=true -Dclirr.skip=true -Danimal.sniffer.skip=true
Expand Down Expand Up @@ -170,7 +168,7 @@ jobs:

scylla-integration-tests:
name: Scylla ITs
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
needs: [setup-integration-tests]
timeout-minutes: 90

Expand All @@ -196,9 +194,6 @@ jobs:

- name: Setup environment
run: |
sudo sh -c "echo 'deb http://security.ubuntu.com/ubuntu xenial-security main' >> /etc/apt/sources.list"
sudo apt-get update
sudo apt-get install libssl1.0.0
pip3 install https://github.com/scylladb/scylla-ccm/archive/master.zip
sudo sh -c "echo 2097152 >> /proc/sys/fs/aio-max-nr"
Expand Down

0 comments on commit b19c417

Please sign in to comment.