We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c08886 commit 81299bbCopy full SHA for 81299bb
.github/workflows/continuous-integration.yml
@@ -180,11 +180,17 @@ jobs:
180
with:
181
working-directory: 'smithy-kotlin'
182
183
- - name: Configure CRT Docker Images
+ - name: Configure Linux CRT Docker Images
184
shell: bash
185
- if: ${{ matrix.os != 'macos-latest' }}
+ if: ${{ matrix.os == 'ubuntu-latest' }}
186
run: |
187
- ./aws-crt-kotlin/docker-images/build-all.sh
+ ./aws-crt-kotlin/docker-images/build-images.sh linux-x64 linux-arm64
188
+
189
+ - name: Configure Windows CRT Docker Images
190
+ shell: bash
191
+ if: ${{ matrix.os == 'windows-latest' }}
192
+ run: |
193
+ ./aws-crt-kotlin/docker-images/build-images.sh mingw-x64
194
195
- name: Sanity checks
196
0 commit comments