-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aad556d
commit 91236cc
Showing
2 changed files
with
90 additions
and
44 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
additional_steps: &additional_steps | ||
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=${{ inputs.ip-family }}" >> $GITHUB_ENV | ||
- name: Setup testing dependencies | ||
uses: ./.github/actions/test-setup | ||
with: | ||
scylla-version: ${{ inputs.scylla-version }} | ||
ip-family: ${{ inputs.ip-family }} | ||
raft-enabled: ${{ inputs.raft-enabled }} | ||
|
||
- name: Run cqlping tests | ||
run: make pkg-integration-test PKG=./pkg/ping/cqlping | ||
|
||
- name: Run dynamoping tests | ||
run: make pkg-integration-test PKG=./pkg/ping/dynamoping | ||
|
||
- name: Run scyllaclient tests | ||
run: make pkg-integration-test PKG=./pkg/scyllaclient | ||
|
||
- name: Run cluster tests | ||
run: make pkg-integration-test PKG=./pkg/service/cluster | ||
|
||
- name: Run healthcheck tests | ||
run: make pkg-integration-test PKG=./pkg/service/healthcheck | ||
|
||
- name: Run scheduler tests | ||
run: make pkg-integration-test PKG=./pkg/service/scheduler | ||
|
||
- name: Run store tests | ||
run: make pkg-integration-test PKG=./pkg/store | ||
|
||
- name: Run migrate tests | ||
run: make pkg-integration-test PKG=./pkg/schema/migrate | ||
|
||
- name: Run netwait tests | ||
run: make pkg-integration-test PKG=./pkg/util/netwait |