8000 Try using circleci datasources · localstack/localstack@298817a · GitHub
[go: up one dir, main page]

Skip to content

Commit 298817a

Browse files
committed
Try using circleci datasources
1 parent 7c9e51f commit 298817a

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/aws-tests.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -107,14 +107,16 @@ env:
107107
TEST_AWS_ACCESS_KEY_ID: ${{ inputs.testAWSAccessKeyId }}
108108
# Set non-job-specific environment variables for pytest-tinybird
109109
TINYBIRD_URL: https://api.tinybird.co
110-
TINYBIRD_DATASOURCE: all_tests
110+
TINYBIRD_DATASOURCE: ${{ inputs.onlyAcceptanceTests == 'true' && 'community_tests_circleci_acceptance'
111+
|| inputs.testAWSAccountId != '000000000000' && 'community_tests_circleci_ma_mr'
112+
|| 'community_tests_circleci' }}
111113
TINYBIRD_TOKEN: ${{ secrets.TINYBIRD_CI_TOKEN }}
112114
TINYBIRD_TIMEOUT: 5
113-
CI_REPOSITORY_NAME: localstack/localstack
115+
# CI_REPOSITORY_NAME: localstack/localstack
114116
# differentiate between "acceptance", "mamr" and "full" runs
115-
CI_WORKFLOW_NAME: ${{ inputs.onlyAcceptanceTests == 'true' && 'tests_acceptance'
116-
|| inputs.testAWSAccountId != '000000000000' && 'tests_mamr'
117-
|| 'tests_full' }}
117+
# CI_WORKFLOW_NAME: ${{ inputs.onlyAcceptanceTests == 'true' && 'tests_acceptance'
118+
# || inputs.testAWSAccountId != '000000000000' && 'tests_mamr'
119+
# || 'tests_full' }}
118120
CI_COMMIT_BRANCH: ${{ github.head_ref || github.ref_name }}
119121
CI_COMMIT_SHA: ${{ github.sha }}
120122
CI_JOB_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}

0 commit comments

Comments
 (0)
0