-
Notifications
You must be signed in to change notification settings - Fork 317
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
336b876
commit f569ead
Showing
29 changed files
with
2,434 additions
and
26 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -142,6 +142,7 @@ jobs: | |
- integration_test/tracing | ||
- integration_test/backendconfigunavailability | ||
- integration_test/trackedusersreporting | ||
- integration_test/snowpipestreaming | ||
- processor | ||
- regulation-worker | ||
- router | ||
|
@@ -168,6 +169,11 @@ jobs: | |
go-version-file: 'go.mod' | ||
- run: go version | ||
- run: go mod download | ||
- name: Login to DockerHub | ||
uses: docker/[email protected] | ||
with: | ||
username: rudderlabs | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Package Unit [ ${{ matrix.package }} ] | ||
env: | ||
TEST_KAFKA_CONFLUENT_CLOUD_HOST: ${{ secrets.TEST_KAFKA_CONFLUENT_CLOUD_HOST }} | ||
|
@@ -178,7 +184,8 @@ jobs: | |
TEST_KAFKA_AZURE_EVENT_HUBS_CLOUD_CONNECTION_STRING: ${{ secrets.TEST_KAFKA_AZURE_EVENT_HUBS_CLOUD_CONNECTION_STRING }} | ||
TEST_S3_DATALAKE_CREDENTIALS: ${{ secrets.TEST_S3_DATALAKE_CREDENTIALS }} | ||
BIGQUERY_INTEGRATION_TEST_CREDENTIALS: ${{ secrets.BIGQUERY_INTEGRATION_TEST_CREDENTIALS }} | ||
run: make test exclude="${{ matrix.exclude }}" package=${{ matrix.package }} | ||
SNOWPIPE_STREAMING_KEYPAIR_UNENCRYPTED_INTEGRATION_TEST_CREDENTIALS: ${{ secrets.SNOWPIPE_STREAMING_KEYPAIR_UNENCRYPTED_INTEGRATION_TEST_CREDENTIALS }} | ||
run: FORCE_RUN_INTEGRATION_TESTS=true make test exclude="${{ matrix.exclude }}" package=${{ matrix.package }} | ||
- name: Sanitize name for Artifact | ||
run: | | ||
name=$(echo -n "${{ matrix.package }}" | sed -e 's/[ \t:\/\\"<>|*?]/-/g' -e 's/--*/-/g') | ||
|
Oops, something went wrong.