Skip to content

Commit 6d09543

Browse files
enhanced-integration
Summary: - Traffic lights on tag. - Traffic light cadense slowed.
1 parent 02f2875 commit 6d09543

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -743,7 +743,7 @@ jobs:
743743
python cicd/python/build.py --robot-test-integration
744744
745745
- name: Run traffic light robot integration tests
746-
if: (startsWith(env.STATE_SOURCE_TAG, 'build-traffic-lights') || (github.repository == 'stackql/stackql' && github.event_name == 'push' && github.ref == 'refs/heads/main')) && matrix.registry == 'test/registry'
746+
if: (startsWith(github.ref_name, 'build-traffic-lights') && github.ref_type == 'tag') || (github.repository == 'stackql/stackql' && github.event_name == 'push' && github.ref == 'refs/heads/main')) && matrix.registry == 'test/registry'
747747
env:
748748
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
749749
AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }}

test/robot/integration-traffic-lights/stackql_traffic_light_integration_from_cmd_line.robot

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Nop From Lib
1111

1212

1313
AWS S3 Buckets Location Constraint
14+
Sleep 2s
1415
${locactionConstraintQuery} = Catenate
1516
... select LocationConstraint from aws.s3.bucket_locations where region = 'ap-southeast-1' and Bucket = 'stackql-trial-bucket-01';
1617
${result} = Run Process
@@ -26,6 +27,7 @@ AWS S3 Buckets Location Constraint
2627
Should Contain ${result.stdout} ap\-southeast\-1
2728

2829
AWS S3 Buckets List
30+
Sleep 2s
2931
${bucketsListQuery} = Catenate
3032
... select * from aws.s3.buckets where region = 'us-east-1' order by BucketArn desc;
3133
${result} = Run Process
@@ -41,6 +43,7 @@ AWS S3 Buckets List
4143
Should Contain ${result.stdout} stackql\-trial\-bucket\-02
4244

4345
AWS S3 Bucket Objects List
46+
Sleep 2s
4447
${bucketObjectsListQuery} = Catenate
4548
... select * from aws.s3.objects where Bucket = 'stackql-trial-bucket-02' and region = 'ap-southeast-2';
4649
${result} = Run Process

0 commit comments

Comments
 (0)