Skip to content
Open
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
23 changes: 21 additions & 2 deletions .github/workflows/aws-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -267,12 +267,15 @@ jobs:
- 'localstack-core/localstack/services/cloudwatch/**'
- 'tests/aws/services/cloudwatch/**'
dynamodb-v2:
- 'localstack-core/localstack/services/dynamodb/**'
- 'tests/aws/services/dynamodb/**'
- 'tests/aws/services/dynamodbstreams/**'
- 'tests/aws/services/lambda_/event_source_mapping/test_lambda_integration_dynamodbstreams.py'
events-v1:
- 'localstack-core/localstack/services/events/**'
- 'tests/aws/services/events/**'
cloudformation-v2:
- 'localstack-core/localstack/services/cloudformation/**'
- 'tests/aws/services/cloudformation/**'
sns-v2:
- 'tests/aws/services/sns/**' # todo: potentially add more locations (lambda/sqs tests?)
Expand Down Expand Up @@ -665,6 +668,9 @@ jobs:
# Set job-specific environment variables for pytest-tinybird
CI_JOB_NAME: ${{ github.job }}
CI_JOB_ID: ${{ github.job }}
outputs:
# we need this output to conditionally execute the Publishing step
job_status: "executed"
steps:
- name: Checkout
uses: actions/checkout@v5
Expand Down Expand Up @@ -715,6 +721,9 @@ jobs:
# Set job-specific environment variables for pytest-tinybird
CI_JOB_NAME: ${{ github.job }}
CI_JOB_ID: ${{ github.job }}
outputs:
# we need this output to conditionally execute the Publishing step
job_status: "executed"
steps:
- name: Checkout
uses: actions/checkout@v5
Expand Down Expand Up @@ -764,6 +773,9 @@ jobs:
# Set job-specific environment variables for pytest-tinybird
CI_JOB_NAME: ${{ github.job }}
CI_JOB_ID: ${{ github.job }}
outputs:
# we need this output to conditionally execute the Publishing step
job_status: "executed"
steps:
- name: Checkout
uses: actions/checkout@v5
Expand Down Expand Up @@ -815,6 +827,9 @@ jobs:
# Set job-specific environment variables for pytest-tinybird
CI_JOB_NAME: ${{ github.job }}
CI_JOB_ID: ${{ github.job }}
outputs:
# we need this output to conditionally execute the Publishing step
job_status: "executed"
steps:
- name: Checkout
uses: actions/checkout@v5
Expand Down Expand Up @@ -849,6 +864,7 @@ jobs:
${{ env.COVERAGE_FILE }}
${{ env.JUNIT_REPORTS_FILE }}
retention-days: 30

test-sns-v2:
name: Test SNS V2
if: ${{ !inputs.onlyAcceptanceTests && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v') || needs.test-preflight.outputs.sns-v2 == 'true') }}
Expand All @@ -861,6 +877,9 @@ jobs:
# Set job-specific environment variables for pytest-tinybird
CI_JOB_NAME: ${{ github.job }}
CI_JOB_ID: ${{ github.job }}
outputs:
# we need this output to conditionally execute the Publishing step
job_status: "executed"
steps:
- name: Checkout
uses: actions/checkout@v5
Expand Down Expand Up @@ -901,6 +920,8 @@ jobs:

publish-alternative-provider-test-results:
name: Publish Alternative Provider Test Results
# execute on success or failure, but not if the workflow is cancelled or all of the dependencies has been skipped
if: ${{ !cancelled() && (contains(needs.*.outputs.job_status, 'executed')) }}
needs:
- test-cfn-v2-engine
- test-events-v1
Expand All @@ -913,8 +934,6 @@ jobs:
pull-requests: write
contents: read
issues: read
# execute on success or failure, but not if the workflow is cancelled or any of the dependencies has been skipped
if: always() && !cancelled() && !contains(needs.*.result, 'skipped')
steps:
- name: Download Cloudformation v2 Artifacts
uses: actions/download-artifact@v5
Expand Down
Loading