Skip to content

Commit 81299bb

Browse files
committed
fork docker image creation for Linux and Windows
1 parent 6c08886 commit 81299bb

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,11 +180,17 @@ jobs:
180180
with:
181181
working-directory: 'smithy-kotlin'
182182

183-
- name: Configure CRT Docker Images
183+
- name: Configure Linux CRT Docker Images
184184
shell: bash
185-
if: ${{ matrix.os != 'macos-latest' }}
185+
if: ${{ matrix.os == 'ubuntu-latest' }}
186186
run: |
187-
./aws-crt-kotlin/docker-images/build-all.sh
187+
./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
188194
189195
- name: Sanity checks
190196
shell: bash

0 commit comments

Comments
 (0)