File tree 2 files changed +24
-3
lines changed
2 files changed +24
-3
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ def run(self, env):
11
11
# Maximum package size (for current platform) in bytes
12
12
# NOTE: if you increase this, you might also need to increase the
13
13
# limit in continuous-delivery/pack.sh
14
- max_size = 8_400_000
14
+ max_size = 9_000_000
15
15
# size of current folder
16
16
folder_size = 0
17
17
# total size in bytes
@@ -74,4 +74,5 @@ def run(self, env):
74
74
75
75
print (f"Total NPM package file size: { total_size } bytes" )
76
76
if total_size > max_size :
77
- raise Exception (f'NPM package exceeds size limit of { max_size } bytes.' )
77
+ raise Exception (f'NPM package exceeds size limit of {
78
+ max_size } bytes.' )
Original file line number Diff line number Diff line change 28
28
image :
29
29
- al2012-x64
30
30
- al2-x64
31
- - manylinux2014-aarch64
32
31
- manylinux2014-x64
33
32
- fedora-34-x64
34
33
- opensuse-leap
46
45
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
47
46
./linux-container-ci.sh ${{ env.BUILDER_VERSION }} aws-crt-${{ matrix.image }} build -p ${{ env.PACKAGE_NAME }}
48
47
48
+
49
+ linux-compat-armv8 :
50
+ runs-on : codebuild-aws-crt-nodejs-arm64-${{ github.run_id }}-${{ github.run_attempt }}-arm-3.0-large
51
+ strategy :
52
+ fail-fast : false
53
+ matrix :
54
+ image :
55
+ - manylinux2014-aarch64
56
+ steps :
57
+ - uses : aws-actions/configure-aws-credentials@v4
58
+ with :
59
+ role-to-assume : ${{ env.CRT_CI_ROLE }}
60
+ aws-region : ${{ env.AWS_DEFAULT_REGION }}
61
+ # We can't use the `uses: docker://image` version yet, GitHub lacks authentication for actions -> packages
62
+ - name : Build ${{ env.PACKAGE_NAME }}
63
+ run : |
64
+ 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
65
+ docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
66
+ ./linux-container-ci.sh ${{ env.BUILDER_VERSION }} aws-crt-${{ matrix.image }} build -p ${{ env.PACKAGE_NAME }}
67
+
68
+
49
69
musl-linux :
50
70
runs-on : ubuntu-24.04 # latest
51
71
strategy :
You can’t perform that action at this time.
0 commit comments