Skip to content
Closed
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
6 changes: 3 additions & 3 deletions .github/workflows/build-lint-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ env:
jobs:
build-lint-and-unit-test:
name: Build, lint and run unit tests
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:

scylla-integration-tests:
name: Scylla ITs
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
needs: [build-lint-and-unit-test]
timeout-minutes: 90

Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
path: ${{ env.CCM_LOGS_PATTERN }}

cassandra-integration-tests:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
needs: [build-lint-and-unit-test]

strategy:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:
jobs:
build-rpm-pkgs:
name: Build rpm packages
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
container:
image: fedora:latest
# Required by `mock`:
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:

build-deb-pkgs:
name: Build deb packages
runs-on: ubuntu-22.04
runs-on: ubuntu-latest

strategy:
matrix:
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -181,10 +181,10 @@ install-java8-if-missing:
}

install-build-dependencies: update-apt-cache-if-needed
@sudo apt-get install -y libssl1.1 libuv1-dev libkrb5-dev libc6-dbg
@sudo apt-get install -y libuv1-dev libkrb5-dev libc6-dbg

install-bin-dependencies: update-apt-cache-if-needed
@sudo apt-get install -y libssl1.1 libuv1-dev libkrb5-dev libc6-dbg
@sudo apt-get install -y libuv1-dev libkrb5-dev libc6-dbg

build-integration-test-bin:
@{\
Expand Down
Loading