Speed up repair test #29
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
concurrency: | |
cancel-in-progress: true | |
group: int-${{ github.workflow }}-${{ github.ref }} | |
env: | |
scylla-version: scylla-enterprise-nightly:latest-enterprise | |
ip-family: IPV4 | |
raft-schema: none | |
tablets: disabled | |
jobs: | |
backup: | |
name: Test backup | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
- name: Setup testing dependencies | |
uses: ./.github/actions/test-setup | |
with: | |
ip-family: ${{ env.ip-family }} | |
raft-schema: ${{ env.raft-schema }} | |
scylla-version: ${{ env.scylla-version }} | |
tablets: ${{ env.tablets }} | |
- name: Run tests | |
run: make pkg-integration-test IP_FAMILY=${{ env.ip-family }} PKG=./pkg/service/repair | |
repair: | |
name: Test repair | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
- name: Setup testing dependencies | |
uses: ./.github/actions/test-setup | |
with: | |
ip-family: ${{ env.ip-family }} | |
raft-schema: ${{ env.raft-schema }} | |
scylla-version: ${{ env.scylla-version }} | |
tablets: ${{ env.tablets }} | |
- name: Run tests | |
run: make pkg-integration-test IP_FAMILY=${{ env.ip-family }} PKG=./pkg/service/repair | |
restore-schema: | |
name: Test restore schema | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
- name: Setup testing dependencies | |
uses: ./.github/actions/test-setup | |
with: | |
ip-family: ${{ env.ip-family }} | |
raft-schema: ${{ env.raft-schema }} | |
scylla-version: ${{ env.scylla-version }} | |
tablets: ${{ env.tablets }} | |
- name: Run tests | |
run: make pkg-integration-test IP_FAMILY=${{ env.ip-family }} PKG=./pkg/service/repair | |
restore-tables: | |
name: Test restore tables | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
- name: Setup testing dependencies | |
uses: ./.github/actions/test-setup | |
with: | |
ip-family: ${{ env.ip-family }} | |
raft-schema: ${{ env.raft-schema }} | |
scylla-version: ${{ env.scylla-version }} | |
tablets: ${{ env.tablets }} | |
- name: Run tests | |
run: make pkg-integration-test IP_FAMILY=${{ env.ip-family }} PKG=./pkg/service/repair | |
small-pkg: | |
name: Test other, smaller packages | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
- name: Set IP_FAMILY var for all tests | |
run: | | |
echo "IP_FAMILY=${{ env.ip-family }}" >> $GITHUB_ENV | |
- name: Setup testing dependencies | |
uses: ./.github/actions/test-setup | |
with: | |
ip-family: ${{ env.ip-family }} | |
raft-schema: ${{ env.raft-schema }} | |
scylla-version: ${{ env.scylla-version }} | |
tablets: ${{ env.tablets }} | |
- name: Run cqlping tests | |
run: make pkg-integration-test IP_FAMILY=${{ env.ip-family }} PKG=./pkg/service/repair | |
name: integration-tests-latest-enterprise-IPV4 | |
"on": | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
push: | |
branches: | |
- master |