File tree Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change 37
37
run : |
38
38
sudo apt-get update
39
39
sudo apt-get install -y eatmydata
40
- sudo eatmydata apt-get install -y gettext librsvg2-bin mingw-w64 latexmk texlive-fonts-recommended texlive-latex-recommended texlive-latex-extra
40
+ sudo eatmydata apt-get install -y gettext librsvg2-bin mingw-w64 latexmk texlive-fonts-recommended texlive-latex-recommended texlive-latex-extra gcc-aarch64-linux-gnu
41
41
pip install -r requirements-dev.txt
42
42
- name : Versions
43
43
run : |
93
93
- name : mpy Tests
94
94
run : MICROPY_CPYTHON3=python3.8 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests -j1 --via-mpy -d basics float
95
95
working-directory : tests
96
+ - name : Build mpy-cross.static-aarch64
97
+ run : make -C mpy-cross -j2 -f Makefile.static-aarch64
98
+ - uses : actions/upload-artifact@v2
99
+ with :
100
+ name : mpy-cross.static-aarch64
101
+ path : mpy-cross/mpy-cross.static-aarch64
96
102
- name : Build mpy-cross.static-raspbian
97
103
run : make -C mpy-cross -j2 -f Makefile.static-raspbian
98
104
- uses : actions/upload-artifact@v2
@@ -113,6 +119,7 @@ jobs:
113
119
path : mpy-cross/mpy-cross.static.exe
114
120
- name : Upload stubs and mpy-cross builds to S3
115
121
run : |
122
+ [ -z "$AWS_ACCESS_KEY_ID" ] || aws s3 cp mpy-cross/mpy-cross.static-aarch64 s3://adafruit-circuit-python/bin/mpy-cross/mpy-cross.static-aarch64-${{ env.CP_VERSION }} --no-progress --region us-east-1
116
123
[ -z "$AWS_ACCESS_KEY_ID" ] || aws s3 cp mpy-cross/mpy-cross.static-raspbian s3://adafruit-circuit-python/bin/mpy-cross/mpy-cross.static-raspbian-${{ env.CP_VERSION }} --no-progress --region us-east-1
117
124
[ -z "$AWS_ACCESS_KEY_ID" ] || aws s3 cp mpy-cross/mpy-cross.static s3://adafruit-circuit-python/bin/mpy-cross/mpy-cross.static-amd64-linux-${{ env.CP_VERSION }} --no-progress --region us-east-1
118
125
[ -z "$AWS_ACCESS_KEY_ID" ] || aws s3 cp mpy-cross/mpy-cross.static.exe s3://adafruit-circuit-python/bin/mpy-cross/mpy-cross.static-x64-windows-${{ env.CP_VERSION }}.exe --no-progress --region us-east-1
Original file line number Diff line number Diff line change
1
+ # SPDX-FileCopyrightText: 2014 MicroPython & CircuitPython contributors (https://github.com/adafruit/circuitpython/graphs/contributors)
2
+ #
3
+ # SPDX-License-Identifier: MIT
4
+
5
+ PROG=mpy-cross.static-aarch64
6
+ BUILD=build-static-aarch64
7
+ STATIC_BUILD=1
8
+
9
+ CROSS_COMPILE = aarch64-linux-gnu-
10
+ include mpy-cross.mk
You can’t perform that action at this time.
0 commit comments