Skip to content

Commit

Permalink
oh boy, let get rid of qemu for raspbian as well
Browse files Browse the repository at this point in the history
  • Loading branch information
TingDaoK committed Jan 6, 2025
1 parent 84da618 commit 1fb053f
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ jobs:
- fedora-34-x64
- opensuse-leap
- rhel8-x64
- raspbian-bullseye
steps:
- uses: aws-actions/configure-aws-credentials@v4
with:
Expand All @@ -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:
Expand Down

0 comments on commit 1fb053f

Please sign in to comment.