From 1fb053f6e7560f0e6f39fed9055d7892cee6ad4b Mon Sep 17 00:00:00 2001 From: Dengke Date: Mon, 6 Jan 2025 15:14:53 -0800 Subject: [PATCH] oh boy, let get rid of qemu for raspbian as well --- .github/workflows/ci.yml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d0eca1a7..81400cd5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,6 @@ jobs: - fedora-34-x64 - opensuse-leap - rhel8-x64 - - raspbian-bullseye steps: - uses: aws-actions/configure-aws-credentials@v4 with: @@ -46,6 +45,21 @@ jobs: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes ./linux-container-ci.sh ${{ env.BUILDER_VERSION }} aws-crt-${{ matrix.image }} build -p ${{ env.PACKAGE_NAME }} + raspbian-bullseye: + runs-on: codebuild-aws-crt-nodejs-arm64-${{ github.run_id }}-${{ github.run_attempt }}-arm-3.0-large + strategy: + fail-fast: false + steps: + - uses: aws-actions/configure-aws-credentials@v4 + with: + role-to-assume: ${{ env.CRT_CI_ROLE }} + aws-region: ${{ env.AWS_DEFAULT_REGION }} + # We can't use the `uses: docker://image` version yet, GitHub lacks authentication for actions -> packages + - name: Build ${{ env.PACKAGE_NAME }} + run: | + 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-raspbian-bullseye build -p ${{ env.PACKAGE_NAME }} + musl-linux: runs-on: ubuntu-24.04 # latest strategy: