File tree Expand file tree Collapse file tree 1 file changed +26
-1
lines changed Expand file tree Collapse file tree 1 file changed +26
-1
lines changed Original file line number Diff line number Diff line change 7
7
- ' docs'
8
8
9
9
env :
10
- BUILDER_VERSION : v0.8.28
10
+ BUILDER_VERSION : v0.9.21
11
11
BUILDER_SOURCE : releases
12
12
BUILDER_HOST : https://d19elf31gohf1l.cloudfront.net
13
13
PACKAGE_NAME : aws-iot-device-sdk-python-v2
46
46
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
47
47
./linux-container-ci.sh ${{ env.BUILDER_VERSION }} aws-crt-al2-x64 build -p ${{ env.PACKAGE_NAME }}
48
48
49
+
50
+ raspberry :
51
+ runs-on : ubuntu-latest # latest
52
+ permissions :
53
+ id-token : write # This is required for requesting the JWT
54
+ strategy :
55
+ fail-fast : false
56
+ matrix :
57
+ image :
58
+ - raspbian-bullseye
59
+ steps :
60
+ - name : configure AWS credentials (containers)
61
+ uses : aws-actions/configure-aws-credentials@v1
62
+ with :
63
+ role-to-assume : ${{ env.CI_IOT_CONTAINERS }}
64
+ aws-region : ${{ env.AWS_DEFAULT_REGION }}
65
+ # set arm arch
66
+ - name : Install qemu/docker
67
+ run : docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
68
+ - name : Build ${{ env.PACKAGE_NAME }}
69
+ run : |
70
+ 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
71
+ ./linux-container-ci.sh ${{ env.BUILDER_VERSION }} aws-crt-${{ matrix.image }} build -p ${{ env.PACKAGE_NAME }}
72
+
73
+
49
74
windows :
50
75
runs-on : windows-latest
51
76
permissions :
You can’t perform that action at this time.
0 commit comments