File tree 1 file changed +10
-1
lines changed
1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -115,23 +115,32 @@ jobs:
115
115
run : |
116
116
poetry export --format requirements.txt --output requirements.txt
117
117
pip install --require-hashes -r requirements.txt
118
+
118
119
- name : Set up QEMU
119
120
uses : docker/setup-qemu-action@2b82ce82d56a2a04d2637cd93a637ae1b359c0a7 # v2.0.0
120
121
with :
121
122
platforms : arm64
122
123
# NOTE: we need QEMU to build Layer against a different architecture (e.g., ARM)
124
+
123
125
- name : Set up Docker Buildx
124
126
id : builder
125
127
uses : docker/setup-buildx-action@4c0219f9ac95b02789c1075625400b2acbff50b1 # v2.9.1
126
128
with :
127
129
install : true
128
130
driver : docker
129
131
platforms : linux/amd64,linux/arm64
130
- - name : install cdk and deps
132
+
133
+ - name : Install CDK
131
134
working-directory : ./
132
135
run : |
133
136
npm ci
134
137
npx cdk --version
138
+
139
+ # Baking time for PyPi eventual consistency; 60s seemed more than enough
140
+ # https://github.com/aws-powertools/powertools-lambda-python/issues/2491
141
+ - name : Baking time (PyPi)
142
+ run : sleep 60
143
+
135
144
- name : CDK build
136
145
run : npx cdk synth --verbose --context version="${{ inputs.latest_published_version }}" -o cdk.out
137
146
- name : zip output
You can’t perform that action at this time.
0 commit comments