diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 074b966f..62542291 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,29 +66,29 @@ jobs: ./linux-container-ci.sh ${{ env.BUILDER_VERSION }} aws-crt-${{ matrix.image }} build -p ${{ env.PACKAGE_NAME }} linux-musl-armv7: - runs-on: ubuntu-24.04 # latest - strategy: - fail-fast: false - matrix: - image: - - alpine-3.16-x64 - steps: - - uses: aws-actions/configure-aws-credentials@v4 + runs-on: ubuntu-24.04 # latest + strategy: + fail-fast: false + matrix: + image: + - alpine-3.16-x64 + steps: + - uses: aws-actions/configure-aws-credentials@v4 + with: + role-to-assume: ${{ env.CRT_CI_ROLE }} + aws-region: ${{ env.AWS_DEFAULT_REGION }} + - name: Install qemu/docker + run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes + - name: Checkout Sources + uses: actions/checkout@v2 with: - role-to-assume: ${{ env.CRT_CI_ROLE }} - aws-region: ${{ env.AWS_DEFAULT_REGION }} - - name: Install qemu/docker - run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes - - name: Checkout Sources - uses: actions/checkout@v2 - with: - submodules: true - # We can't use the `uses: docker://image` version yet, GitHub lacks authentication for actions -> packages - - name: Build ${{ env.PACKAGE_NAME }} - run: | - export AWS_CRT_ARCH=armv7 - aws s3 cp s3://aws-crt-test-stuff/ci/${{ env.BUILDER_VERSION }}/linux-container-ci.sh ./linux-container-ci.sh && chmod a+x ./linux-container-ci.sh - ./linux-container-ci.sh ${{ env.BUILDER_VERSION }} aws-crt-alpine-3.16-armv7 build -p ${{ env.PACKAGE_NAME }} + submodules: true + # We can't use the `uses: docker://image` version yet, GitHub lacks authentication for actions -> packages + - name: Build ${{ env.PACKAGE_NAME }} + run: | + export AWS_CRT_ARCH=armv7 + aws s3 cp s3://aws-crt-test-stuff/ci/${{ env.BUILDER_VERSION }}/linux-container-ci.sh ./linux-container-ci.sh && chmod a+x ./linux-container-ci.sh + ./linux-container-ci.sh ${{ env.BUILDER_VERSION }} aws-crt-alpine-3.16-armv7 build -p ${{ env.PACKAGE_NAME }} linux-compiler-compat: runs-on: ubuntu-24.04 # latest