Skip to content

Commit aae21e2

Browse files
ci(integration-test-deployment): update workflow to build both stable and alpha integration test packages (#35934)
### Issue # (if applicable) ### Reason for this change The deployment integ test does not find snapshots of alpha packages. See this log: https://github.com/aws/aws-cdk/actions/runs/18824890075/job/53705955618?pr=35705#step:13:382 This was due to the fact that only integration test for stable packages where build and not for alpha packages. ### Description of changes The change should build integration test for both alpha and stable packages. ### Describe any new or updated permissions being added ### Description of how you validated changes Test run: https://github.com/Abogical/aws-cdk/actions/runs/19066544528/job/54458557618 ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 2c73af3 commit aae21e2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/integration-test-deployment.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,9 @@ jobs:
100100
- name: Build deployment-integ
101101
run: yarn --cwd tools/@aws-cdk/integration-test-deployment build
102102

103-
- name: Build Integration Tests
104-
run: npx lerna run build --scope=@aws-cdk-testing/framework-integ
103+
# Build integration test packages: @aws-cdk-testing/framework-integ (stable tests) and @aws-cdk/* (alpha tests)
104+
- name: Build Integration Test packages
105+
run: npx lerna run build --scope="{@aws-cdk/*,@aws-cdk-testing/framework-integ}"
105106

106107
- name: Run integration tests using integration-test-deployment script
107108
run: yarn run atmosphere-integ-test

0 commit comments

Comments
 (0)