2020-06-03 23:40:05 +01:00
|
|
|
# SPDX-FileCopyrightText: 2014 MicroPython & CircuitPython contributors (https://github.com/adafruit/circuitpython/graphs/contributors)
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
2019-08-15 00:07:29 -07:00
|
|
|
name: Build CI
|
|
|
|
|
2019-10-14 20:16:59 -07:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
release:
|
|
|
|
types: [published]
|
|
|
|
check_suite:
|
|
|
|
types: [rerequested]
|
2019-08-15 00:07:29 -07:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
2020-04-08 10:53:42 -07:00
|
|
|
runs-on: ubuntu-18.04
|
2019-08-15 00:07:29 -07:00
|
|
|
steps:
|
|
|
|
- name: Dump GitHub context
|
|
|
|
env:
|
|
|
|
GITHUB_CONTEXT: ${{ toJson(github) }}
|
|
|
|
run: echo "$GITHUB_CONTEXT"
|
2020-06-14 18:54:05 -05:00
|
|
|
- uses: actions/checkout@v2.2.0
|
2020-03-23 08:40:20 -05:00
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
fetch-depth: 0
|
|
|
|
- run: git fetch --recurse-submodules=no https://github.com/adafruit/circuitpython refs/tags/*:refs/tags/*
|
|
|
|
- name: CircuitPython version
|
2020-07-09 15:13:48 -04:00
|
|
|
run: |
|
|
|
|
git describe --dirty --tags
|
|
|
|
echo "::set-env name=CP_VERSION::$(git describe --dirty --tags)"
|
2020-04-01 16:13:19 -05:00
|
|
|
- name: Set up Python 3.8
|
2019-08-15 00:07:29 -07:00
|
|
|
uses: actions/setup-python@v1
|
|
|
|
with:
|
2020-04-01 16:13:19 -05:00
|
|
|
python-version: 3.8
|
2019-08-15 00:07:29 -07:00
|
|
|
- name: Install deps
|
|
|
|
run: |
|
2020-01-25 14:06:54 -06:00
|
|
|
sudo apt-get install -y eatmydata
|
2020-08-15 16:24:21 -05:00
|
|
|
sudo eatmydata apt-get install -y gettext librsvg2-bin mingw-w64 latexmk texlive-fonts-recommended texlive-latex-recommended texlive-latex-extra
|
2020-07-29 09:08:36 -04:00
|
|
|
pip install requests sh click setuptools cpp-coveralls "Sphinx<4" sphinx-rtd-theme recommonmark sphinx-autoapi sphinxcontrib-svg2pdfconverter polib pyyaml astroid isort black awscli
|
2019-08-15 00:07:29 -07:00
|
|
|
- name: Versions
|
|
|
|
run: |
|
|
|
|
gcc --version
|
|
|
|
python3 --version
|
|
|
|
- name: Build mpy-cross
|
|
|
|
run: make -C mpy-cross -j2
|
|
|
|
- name: Build unix port
|
|
|
|
run: |
|
|
|
|
make -C ports/unix deplibs -j2
|
|
|
|
make -C ports/unix -j2
|
|
|
|
make -C ports/unix coverage -j2
|
|
|
|
- name: Test all
|
2020-04-01 16:13:19 -05:00
|
|
|
run: MICROPY_CPYTHON3=python3.8 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests -j1
|
2019-08-15 00:07:29 -07:00
|
|
|
working-directory: tests
|
|
|
|
- name: Print failure info
|
|
|
|
run: |
|
|
|
|
for exp in *.exp;
|
|
|
|
do testbase=$(basename $exp .exp);
|
|
|
|
echo -e "\nFAILURE $testbase";
|
|
|
|
diff -u $testbase.exp $testbase.out;
|
|
|
|
done
|
|
|
|
working-directory: tests
|
|
|
|
if: failure()
|
|
|
|
- name: Native Tests
|
2020-04-01 16:13:19 -05:00
|
|
|
run: MICROPY_CPYTHON3=python3.8 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests -j1 --emit native
|
2019-08-15 00:07:29 -07:00
|
|
|
working-directory: tests
|
|
|
|
- name: mpy Tests
|
2020-04-01 16:13:19 -05:00
|
|
|
run: MICROPY_CPYTHON3=python3.8 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests -j1 --via-mpy -d basics float
|
2019-08-15 00:07:29 -07:00
|
|
|
working-directory: tests
|
2020-05-12 17:37:42 -07:00
|
|
|
- name: Stubs
|
|
|
|
run: make stubs -j2
|
2020-05-14 21:03:49 -05:00
|
|
|
- uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: stubs
|
|
|
|
path: circuitpython-stubs*
|
2020-08-15 14:29:38 -05:00
|
|
|
- name: Test Documentation Build (HTML)
|
2020-07-09 15:13:48 -04:00
|
|
|
run: sphinx-build -E -W -b html -D version=${{ env.CP_VERSION }} -D release=${{ env.CP_VERSION }} . _build/html
|
2020-05-14 21:03:49 -05:00
|
|
|
- uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: docs
|
|
|
|
path: _build/html
|
2020-08-15 14:29:38 -05:00
|
|
|
- name: Test Documentation Build (LaTeX/PDF)
|
|
|
|
run: |
|
|
|
|
make latexpdf
|
|
|
|
- uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: docs
|
|
|
|
path: _build/latex
|
2019-08-15 00:07:29 -07:00
|
|
|
- name: Translations
|
|
|
|
run: make check-translate
|
|
|
|
- name: New boards check
|
|
|
|
run: python3 -u ci_new_boards_check.py
|
|
|
|
working-directory: tools
|
2020-01-25 14:06:54 -06:00
|
|
|
- name: Build mpy-cross.static-raspbian
|
|
|
|
run: make -C mpy-cross -j2 -f Makefile.static-raspbian
|
2020-07-29 09:08:36 -04:00
|
|
|
- uses: actions/upload-artifact@v2
|
2020-01-25 14:06:54 -06:00
|
|
|
with:
|
|
|
|
name: mpy-cross.static-raspbian
|
|
|
|
path: mpy-cross/mpy-cross.static-raspbian
|
|
|
|
- name: Build mpy-cross.static
|
|
|
|
run: make -C mpy-cross -j2 -f Makefile.static
|
2020-07-29 09:08:36 -04:00
|
|
|
- uses: actions/upload-artifact@v2
|
2020-01-25 14:06:54 -06:00
|
|
|
with:
|
|
|
|
name: mpy-cross.static-amd64-linux
|
|
|
|
path: mpy-cross/mpy-cross.static
|
|
|
|
- name: Build mpy-cross.static-mingw
|
|
|
|
run: make -C mpy-cross -j2 -f Makefile.static-mingw
|
2020-07-29 09:08:36 -04:00
|
|
|
- uses: actions/upload-artifact@v2
|
2020-01-25 14:06:54 -06:00
|
|
|
with:
|
|
|
|
name: mpy-cross.static-x64-windows
|
|
|
|
path: mpy-cross/mpy-cross.static.exe
|
2020-07-28 18:17:05 -04:00
|
|
|
- name: Upload mpy-cross builds to S3
|
|
|
|
run: |
|
2020-07-29 09:08:36 -04:00
|
|
|
[ -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
|
|
|
|
[ -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
|
|
|
|
[ -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
|
2020-07-28 18:17:05 -04:00
|
|
|
env:
|
|
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
2020-07-29 10:35:58 -04:00
|
|
|
if: github.event_name == 'push' || (github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested'))
|
2020-07-28 18:17:05 -04:00
|
|
|
|
2020-01-25 14:06:54 -06:00
|
|
|
|
2020-01-25 18:49:14 -06:00
|
|
|
mpy-cross-mac:
|
2020-04-24 09:08:55 -05:00
|
|
|
runs-on: macos-10.15
|
2020-01-25 18:49:14 -06:00
|
|
|
steps:
|
|
|
|
- name: Dump GitHub context
|
|
|
|
env:
|
|
|
|
GITHUB_CONTEXT: ${{ toJson(github) }}
|
|
|
|
run: echo "$GITHUB_CONTEXT"
|
2020-07-29 09:08:36 -04:00
|
|
|
- name: Install dependencies
|
2020-01-25 18:49:14 -06:00
|
|
|
run: |
|
2020-07-29 09:08:36 -04:00
|
|
|
brew install gettext awscli
|
2020-04-24 09:08:55 -05:00
|
|
|
echo "::set-env name=PATH::/usr/local/opt/gettext/bin:$PATH"
|
2020-01-25 18:49:14 -06:00
|
|
|
- name: Versions
|
|
|
|
run: |
|
|
|
|
gcc --version
|
|
|
|
python3 --version
|
|
|
|
msgfmt --version
|
2020-06-14 18:54:05 -05:00
|
|
|
- uses: actions/checkout@v2.2.0
|
2020-01-25 18:49:14 -06:00
|
|
|
with:
|
|
|
|
submodules: true
|
2020-03-23 08:40:20 -05:00
|
|
|
fetch-depth: 0
|
|
|
|
- run: git fetch --recurse-submodules=no https://github.com/adafruit/circuitpython refs/tags/*:refs/tags/*
|
2020-01-25 18:49:14 -06:00
|
|
|
- name: CircuitPython version
|
2020-07-28 18:17:05 -04:00
|
|
|
run: |
|
|
|
|
git describe --dirty --tags
|
|
|
|
echo "::set-env name=CP_VERSION::$(git describe --dirty --tags)"
|
2020-01-25 18:49:14 -06:00
|
|
|
- name: Build mpy-cross
|
|
|
|
run: make -C mpy-cross -j2
|
2020-07-29 09:08:36 -04:00
|
|
|
- uses: actions/upload-artifact@v2
|
2020-01-25 18:49:14 -06:00
|
|
|
with:
|
|
|
|
name: mpy-cross-macos-catalina
|
|
|
|
path: mpy-cross/mpy-cross
|
2020-07-28 18:17:05 -04:00
|
|
|
- name: Upload mpy-cross build to S3
|
2020-07-29 09:08:36 -04:00
|
|
|
run: |
|
|
|
|
[ -z "$AWS_ACCESS_KEY_ID" ] || aws s3 cp mpy-cross/mpy-cross s3://adafruit-circuit-python/bin/mpy-cross/mpy-cross-macos-catalina-${{ env.CP_VERSION }} --no-progress --region us-east-1
|
2020-07-28 18:17:05 -04:00
|
|
|
env:
|
|
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
2020-07-29 10:35:58 -04:00
|
|
|
if: github.event_name == 'push' || (github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested'))
|
2020-07-28 18:17:05 -04:00
|
|
|
|
2020-01-25 18:49:14 -06:00
|
|
|
|
2019-08-15 00:07:29 -07:00
|
|
|
build-arm:
|
2020-04-08 10:53:42 -07:00
|
|
|
runs-on: ubuntu-18.04
|
2019-08-15 00:07:29 -07:00
|
|
|
needs: test
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
board:
|
2020-03-24 19:43:25 +00:00
|
|
|
- "8086_commander"
|
2020-03-12 20:39:42 -04:00
|
|
|
- "TG-Watch02A"
|
2020-05-20 21:11:06 -05:00
|
|
|
- "aloriumtech_evo_m51"
|
2020-01-07 00:31:37 +02:00
|
|
|
- "aramcon_badge_2019"
|
2019-08-15 00:07:29 -07:00
|
|
|
- "arduino_mkr1300"
|
|
|
|
- "arduino_mkrzero"
|
2019-10-26 12:58:45 -04:00
|
|
|
- "arduino_nano_33_ble"
|
2020-02-19 10:22:57 +01:00
|
|
|
- "arduino_nano_33_iot"
|
2019-08-15 00:07:29 -07:00
|
|
|
- "arduino_zero"
|
|
|
|
- "bast_pro_mini_m0"
|
2020-03-27 13:37:59 -04:00
|
|
|
- "bdmicro_vina_m0"
|
2020-07-09 11:26:45 +09:00
|
|
|
- "bless_dev_board_multi_sensor"
|
2020-07-28 14:23:01 -04:00
|
|
|
- "blm_badge"
|
2019-08-15 00:07:29 -07:00
|
|
|
- "capablerobot_usbhub"
|
|
|
|
- "catwan_usbstick"
|
2020-02-05 15:13:05 -06:00
|
|
|
- "circuitbrains_basic_m0"
|
|
|
|
- "circuitbrains_deluxe_m4"
|
2019-08-15 00:07:29 -07:00
|
|
|
- "circuitplayground_bluefruit"
|
|
|
|
- "circuitplayground_express"
|
|
|
|
- "circuitplayground_express_crickit"
|
2019-09-17 10:40:07 -07:00
|
|
|
- "circuitplayground_express_displayio"
|
2019-12-30 17:10:42 -05:00
|
|
|
- "clue_nrf52840_express"
|
2019-08-15 00:07:29 -07:00
|
|
|
- "cp32-m4"
|
|
|
|
- "datalore_ip_m4"
|
|
|
|
- "datum_distance"
|
|
|
|
- "datum_imu"
|
|
|
|
- "datum_light"
|
|
|
|
- "datum_weather"
|
|
|
|
- "electronut_labs_blip"
|
|
|
|
- "electronut_labs_papyr"
|
|
|
|
- "escornabot_makech"
|
2020-02-06 11:25:07 -05:00
|
|
|
- "espruino_pico"
|
2020-02-06 12:19:19 -05:00
|
|
|
- "espruino_wifi"
|
2020-02-03 13:54:24 -05:00
|
|
|
- "feather_bluefruit_sense"
|
2019-08-15 00:07:29 -07:00
|
|
|
- "feather_m0_adalogger"
|
|
|
|
- "feather_m0_basic"
|
|
|
|
- "feather_m0_express"
|
|
|
|
- "feather_m0_express_crickit"
|
|
|
|
- "feather_m0_rfm69"
|
|
|
|
- "feather_m0_rfm9x"
|
|
|
|
- "feather_m0_supersized"
|
|
|
|
- "feather_m4_express"
|
2020-02-19 21:58:10 +01:00
|
|
|
- "feather_m7_1011"
|
2019-11-02 16:52:26 +01:00
|
|
|
- "feather_mimxrt1011"
|
|
|
|
- "feather_mimxrt1062"
|
2019-08-15 00:07:29 -07:00
|
|
|
- "feather_nrf52840_express"
|
|
|
|
- "feather_radiofruit_zigbee"
|
2019-10-24 12:51:40 -04:00
|
|
|
- "feather_stm32f405_express"
|
2020-05-26 03:32:12 +02:00
|
|
|
- "fluff_m0"
|
2019-08-15 00:07:29 -07:00
|
|
|
- "gemma_m0"
|
|
|
|
- "grandcentral_m4_express"
|
|
|
|
- "hallowing_m0_express"
|
2019-08-29 14:38:16 -07:00
|
|
|
- "hallowing_m4_express"
|
2020-05-25 14:59:36 +08:00
|
|
|
- "hiibot_bluefi"
|
2020-07-23 14:39:59 -06:00
|
|
|
- "ikigaisense_vita"
|
2019-11-02 16:52:26 +01:00
|
|
|
- "imxrt1010_evk"
|
2020-01-08 20:32:45 -08:00
|
|
|
- "imxrt1020_evk"
|
|
|
|
- "imxrt1060_evk"
|
2019-08-15 00:07:29 -07:00
|
|
|
- "itsybitsy_m0_express"
|
|
|
|
- "itsybitsy_m4_express"
|
2019-10-25 11:15:34 -04:00
|
|
|
- "itsybitsy_nrf52840_express"
|
2019-08-15 00:07:29 -07:00
|
|
|
- "kicksat-sprite"
|
2020-06-19 18:56:20 +03:00
|
|
|
- "loc_ber_m4_base_board"
|
2020-07-09 10:04:26 +00:00
|
|
|
- "makerdiary_m60_keyboard"
|
|
|
|
- "makerdiary_nrf52840_m2_devkit"
|
2019-08-15 00:07:29 -07:00
|
|
|
- "makerdiary_nrf52840_mdk"
|
|
|
|
- "makerdiary_nrf52840_mdk_usb_dongle"
|
2020-01-04 13:57:38 -05:00
|
|
|
- "meowbit_v121"
|
2019-08-15 00:07:29 -07:00
|
|
|
- "meowmeow"
|
|
|
|
- "metro_m0_express"
|
|
|
|
- "metro_m4_airlift_lite"
|
|
|
|
- "metro_m4_express"
|
|
|
|
- "metro_nrf52840_express"
|
|
|
|
- "mini_sam_m4"
|
|
|
|
- "monster_m4sk"
|
2020-01-23 09:55:17 -07:00
|
|
|
- "ndgarage_ndbit6"
|
2020-07-01 13:58:07 -06:00
|
|
|
- "ndgarage_ndbit6_v2"
|
2020-04-09 17:00:42 -05:00
|
|
|
- "nfc_copy_cat"
|
2020-06-05 19:58:54 -05:00
|
|
|
- "nice_nano"
|
2020-04-20 18:55:27 +02:00
|
|
|
- "nucleo_f746zg"
|
2020-04-06 19:13:55 -04:00
|
|
|
- "nucleo_f767zi"
|
2020-04-01 13:02:05 -04:00
|
|
|
- "nucleo_h743zi_2"
|
2020-01-16 14:28:28 -08:00
|
|
|
- "ohs2020_badge"
|
2020-01-14 15:35:23 -05:00
|
|
|
- "openbook_m4"
|
2020-04-29 15:14:02 -04:00
|
|
|
- "openmv_h7"
|
2019-08-15 00:07:29 -07:00
|
|
|
- "particle_argon"
|
|
|
|
- "particle_boron"
|
|
|
|
- "particle_xenon"
|
|
|
|
- "pca10056"
|
|
|
|
- "pca10059"
|
2020-05-02 20:30:03 +08:00
|
|
|
- "pca10100"
|
2019-08-15 00:07:29 -07:00
|
|
|
- "pewpew10"
|
2019-08-04 14:21:32 +02:00
|
|
|
- "pewpew_m4"
|
2020-08-11 21:51:11 +02:00
|
|
|
- "picoplanet"
|
2019-08-15 00:07:29 -07:00
|
|
|
- "pirkey_m0"
|
2020-04-30 14:31:06 +00:00
|
|
|
- "pitaya_go"
|
2019-11-21 18:24:10 -05:00
|
|
|
- "pyb_nano_v2"
|
2019-08-15 00:07:29 -07:00
|
|
|
- "pybadge"
|
|
|
|
- "pybadge_airlift"
|
2019-09-30 14:13:54 -04:00
|
|
|
- "pyboard_v11"
|
2020-02-10 09:35:15 -08:00
|
|
|
- "pycubed"
|
2020-04-07 18:17:25 -07:00
|
|
|
- "pycubed_mram"
|
2019-08-15 00:07:29 -07:00
|
|
|
- "pygamer"
|
|
|
|
- "pygamer_advance"
|
|
|
|
- "pyportal"
|
|
|
|
- "pyportal_titano"
|
|
|
|
- "pyruler"
|
2020-07-07 13:01:21 -05:00
|
|
|
- "raytac_mdbt50q-db-40"
|
2019-08-15 00:07:29 -07:00
|
|
|
- "robohatmm1_m4"
|
|
|
|
- "sam32"
|
2020-06-18 14:16:57 -05:00
|
|
|
- "same54_xplained"
|
2020-06-29 16:22:41 +08:00
|
|
|
- "seeeduino_wio_terminal"
|
2020-06-30 09:51:44 +08:00
|
|
|
- "seeeduino_xiao"
|
2019-09-14 16:06:28 +02:00
|
|
|
- "serpente"
|
2019-11-25 17:58:00 +01:00
|
|
|
- "shirtty"
|
2020-04-29 22:33:34 +08:00
|
|
|
- "simmel"
|
2019-08-15 00:07:29 -07:00
|
|
|
- "snekboard"
|
|
|
|
- "sparkfun_lumidrive"
|
2019-10-23 15:42:44 -06:00
|
|
|
- "sparkfun_nrf52840_mini"
|
2019-10-23 15:22:46 -06:00
|
|
|
- "sparkfun_qwiic_micro_no_flash"
|
|
|
|
- "sparkfun_qwiic_micro_with_flash"
|
2019-08-15 00:07:29 -07:00
|
|
|
- "sparkfun_redboard_turbo"
|
|
|
|
- "sparkfun_samd21_dev"
|
|
|
|
- "sparkfun_samd21_mini"
|
2019-09-13 12:28:30 -05:00
|
|
|
- "sparkfun_samd51_thing_plus"
|
2019-10-11 12:05:47 +02:00
|
|
|
- "spresense"
|
2019-11-21 17:39:14 -05:00
|
|
|
- "stm32f411ce_blackpill"
|
2019-09-04 18:32:24 -04:00
|
|
|
- "stm32f411ve_discovery"
|
|
|
|
- "stm32f412zg_discovery"
|
2020-02-04 10:45:26 -05:00
|
|
|
- "stm32f4_discovery"
|
2020-04-27 20:34:42 -07:00
|
|
|
- "stm32f746g_discovery"
|
2019-10-14 14:30:32 -07:00
|
|
|
- "stringcar_m0_express"
|
2020-01-08 20:32:45 -08:00
|
|
|
- "teensy40"
|
2020-05-11 13:58:58 -07:00
|
|
|
- "teensy41"
|
2019-12-12 07:48:50 -05:00
|
|
|
- "teknikio_bluebird"
|
2020-03-22 02:41:47 -07:00
|
|
|
- "thunderpack"
|
2020-07-15 21:58:40 -04:00
|
|
|
- "tinkeringtech_scoutmakes_azul"
|
2019-08-15 00:07:29 -07:00
|
|
|
- "trellis_m4_express"
|
|
|
|
- "trinket_m0"
|
|
|
|
- "trinket_m0_haxpress"
|
2020-03-13 22:58:39 +01:00
|
|
|
- "uartlogger2"
|
2019-08-15 00:07:29 -07:00
|
|
|
- "uchip"
|
|
|
|
- "ugame10"
|
2020-03-18 16:40:29 -07:00
|
|
|
- "winterbloom_big_honking_button"
|
2019-10-29 14:10:16 -07:00
|
|
|
- "winterbloom_sol"
|
2019-11-14 16:34:08 +05:00
|
|
|
- "xinabox_cc03"
|
|
|
|
- "xinabox_cs11"
|
2019-08-15 00:07:29 -07:00
|
|
|
|
|
|
|
steps:
|
2020-04-01 16:13:19 -05:00
|
|
|
- name: Set up Python 3.8
|
2019-08-15 00:07:29 -07:00
|
|
|
uses: actions/setup-python@v1
|
|
|
|
with:
|
2020-04-01 16:13:19 -05:00
|
|
|
python-version: 3.8
|
2019-08-15 00:07:29 -07:00
|
|
|
- name: Install deps
|
|
|
|
run: |
|
|
|
|
sudo apt-get install -y gettext
|
|
|
|
pip install requests sh click setuptools awscli
|
2019-12-17 14:30:44 -08:00
|
|
|
wget https://adafruit-circuit-python.s3.amazonaws.com/gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2
|
2019-11-20 09:38:17 -06:00
|
|
|
sudo tar -C /usr --strip-components=1 -xaf gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2
|
2020-03-31 10:53:58 +08:00
|
|
|
- name: Versions
|
|
|
|
run: |
|
|
|
|
gcc --version
|
|
|
|
arm-none-eabi-gcc --version
|
|
|
|
python3 --version
|
2020-06-14 18:54:05 -05:00
|
|
|
- uses: actions/checkout@v2.2.0
|
2020-03-31 10:53:58 +08:00
|
|
|
with:
|
|
|
|
submodules: true
|
2020-03-23 08:40:20 -05:00
|
|
|
fetch-depth: 0
|
|
|
|
- run: git fetch --recurse-submodules=no https://github.com/adafruit/circuitpython refs/tags/*:refs/tags/*
|
2020-03-31 10:53:58 +08:00
|
|
|
- name: mpy-cross
|
|
|
|
run: make -C mpy-cross -j2
|
|
|
|
- name: build
|
|
|
|
run: python3 -u build_release_files.py
|
|
|
|
working-directory: tools
|
|
|
|
env:
|
|
|
|
BOARDS: ${{ matrix.board }}
|
2020-07-29 09:08:36 -04:00
|
|
|
- uses: actions/upload-artifact@v2
|
2020-03-31 10:53:58 +08:00
|
|
|
with:
|
|
|
|
name: ${{ matrix.board }}
|
|
|
|
path: bin/${{ matrix.board }}
|
|
|
|
- name: Upload to S3
|
|
|
|
run: "[ -z \"$AWS_ACCESS_KEY_ID\" ] || aws s3 cp bin/ s3://adafruit-circuit-python/bin/ --recursive --no-progress --region us-east-1"
|
|
|
|
env:
|
|
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
|
|
|
if: github.event_name == 'push' || (github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested'))
|
|
|
|
|
|
|
|
build-riscv:
|
2020-04-08 10:53:42 -07:00
|
|
|
runs-on: ubuntu-18.04
|
2020-03-31 10:53:58 +08:00
|
|
|
needs: test
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
board:
|
|
|
|
- "fomu"
|
|
|
|
|
|
|
|
steps:
|
2020-04-01 16:13:19 -05:00
|
|
|
- name: Set up Python 3.8
|
2020-03-31 10:53:58 +08:00
|
|
|
uses: actions/setup-python@v1
|
|
|
|
with:
|
2020-04-01 16:13:19 -05:00
|
|
|
python-version: 3.8
|
2020-03-31 10:53:58 +08:00
|
|
|
- name: Install deps
|
|
|
|
run: |
|
|
|
|
sudo apt-get install -y gettext
|
|
|
|
pip install requests sh click setuptools awscli
|
2020-03-31 10:05:31 +08:00
|
|
|
wget https://static.dev.sifive.com/dev-tools/riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-centos6.tar.gz
|
|
|
|
sudo tar -C /usr --strip-components=1 -xaf riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-centos6.tar.gz
|
2019-08-15 00:07:29 -07:00
|
|
|
- name: Versions
|
|
|
|
run: |
|
|
|
|
gcc --version
|
2020-03-31 10:05:31 +08:00
|
|
|
riscv64-unknown-elf-gcc --version
|
2019-08-15 00:07:29 -07:00
|
|
|
python3 --version
|
2020-06-14 18:54:05 -05:00
|
|
|
- uses: actions/checkout@v2.2.0
|
2019-08-15 00:07:29 -07:00
|
|
|
with:
|
|
|
|
submodules: true
|
2020-05-04 17:15:14 -05:00
|
|
|
fetch-depth: 0
|
|
|
|
- run: git fetch --recurse-submodules=no https://github.com/adafruit/circuitpython refs/tags/*:refs/tags/*
|
2019-08-15 00:07:29 -07:00
|
|
|
- name: mpy-cross
|
|
|
|
run: make -C mpy-cross -j2
|
|
|
|
- name: build
|
|
|
|
run: python3 -u build_release_files.py
|
|
|
|
working-directory: tools
|
|
|
|
env:
|
|
|
|
BOARDS: ${{ matrix.board }}
|
2020-07-29 09:08:36 -04:00
|
|
|
- uses: actions/upload-artifact@v2
|
2019-08-15 00:07:29 -07:00
|
|
|
with:
|
|
|
|
name: ${{ matrix.board }}
|
|
|
|
path: bin/${{ matrix.board }}
|
|
|
|
- name: Upload to S3
|
2019-11-17 21:18:25 -06:00
|
|
|
run: "[ -z \"$AWS_ACCESS_KEY_ID\" ] || aws s3 cp bin/ s3://adafruit-circuit-python/bin/ --recursive --no-progress --region us-east-1"
|
2019-08-15 00:07:29 -07:00
|
|
|
env:
|
|
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
|
|
|
if: github.event_name == 'push' || (github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested'))
|
2020-04-17 16:23:28 -07:00
|
|
|
build-xtensa:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: test
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
board:
|
|
|
|
- "espressif_saola_1_wroom"
|
|
|
|
- "espressif_saola_1_wrover"
|
2020-08-26 09:00:16 -04:00
|
|
|
- "microdev_micro_s2"
|
2020-06-29 16:34:37 -07:00
|
|
|
- "unexpectedmaker_feathers2"
|
2020-04-17 16:23:28 -07:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Set up Python 3.8
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
with:
|
|
|
|
python-version: 3.8
|
2020-06-14 18:54:05 -05:00
|
|
|
- uses: actions/checkout@v2.2.0
|
2020-04-17 16:23:28 -07:00
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
fetch-depth: 0
|
|
|
|
- run: git fetch --recurse-submodules=no https://github.com/adafruit/circuitpython refs/tags/*:refs/tags/*
|
|
|
|
- name: CircuitPython version
|
|
|
|
run: git describe --dirty --tags
|
|
|
|
- uses: actions/cache@v1
|
|
|
|
name: Fetch IDF tool cache
|
|
|
|
id: idf-cache
|
|
|
|
with:
|
|
|
|
path: ${{ github.workspace }}/.idf_tools
|
2020-08-01 13:21:20 -04:00
|
|
|
key: ${{ runner.os }}-idf-tools-${{ hashFiles('.git/modules/ports/esp32s2/esp-idf/HEAD') }}-20200801
|
2020-04-17 16:23:28 -07:00
|
|
|
- name: Install IDF tools
|
|
|
|
run: |
|
|
|
|
$IDF_PATH/tools/idf_tools.py --non-interactive install required
|
|
|
|
$IDF_PATH/tools/idf_tools.py --non-interactive install cmake
|
|
|
|
$IDF_PATH/tools/idf_tools.py --non-interactive install-python-env
|
|
|
|
rm -rf $IDF_TOOLS_PATH/dist
|
|
|
|
env:
|
|
|
|
IDF_PATH: ${{ github.workspace }}/ports/esp32s2/esp-idf
|
|
|
|
IDF_TOOLS_PATH: ${{ github.workspace }}/.idf_tools
|
|
|
|
- name: Install CircuitPython deps
|
|
|
|
run: |
|
|
|
|
source $IDF_PATH/export.sh
|
|
|
|
pip install requests sh click setuptools awscli
|
|
|
|
sudo apt-get install -y gettext ninja-build
|
|
|
|
env:
|
|
|
|
IDF_PATH: ${{ github.workspace }}/ports/esp32s2/esp-idf
|
|
|
|
IDF_TOOLS_PATH: ${{ github.workspace }}/.idf_tools
|
|
|
|
- name: Versions
|
|
|
|
run: |
|
|
|
|
source $IDF_PATH/export.sh
|
|
|
|
gcc --version
|
|
|
|
xtensa-esp32s2-elf-gcc --version
|
|
|
|
python3 --version
|
|
|
|
ninja --version
|
|
|
|
cmake --version
|
|
|
|
shell: bash
|
|
|
|
env:
|
|
|
|
IDF_PATH: ${{ github.workspace }}/ports/esp32s2/esp-idf
|
|
|
|
IDF_TOOLS_PATH: ${{ github.workspace }}/.idf_tools
|
|
|
|
- name: mpy-cross
|
|
|
|
run: make -C mpy-cross -j2
|
|
|
|
- name: build
|
|
|
|
run: |
|
|
|
|
source $IDF_PATH/export.sh
|
|
|
|
python3 -u build_release_files.py
|
|
|
|
working-directory: tools
|
|
|
|
shell: bash
|
|
|
|
env:
|
|
|
|
IDF_PATH: ${{ github.workspace }}/ports/esp32s2/esp-idf
|
|
|
|
IDF_TOOLS_PATH: ${{ github.workspace }}/.idf_tools
|
|
|
|
BOARDS: ${{ matrix.board }}
|
2020-07-29 09:08:36 -04:00
|
|
|
- uses: actions/upload-artifact@v2
|
2020-04-17 16:23:28 -07:00
|
|
|
with:
|
|
|
|
name: ${{ matrix.board }}
|
|
|
|
path: bin/${{ matrix.board }}
|
|
|
|
- name: Upload to S3
|
|
|
|
run: "[ -z \"$AWS_ACCESS_KEY_ID\" ] || aws s3 cp bin/ s3://adafruit-circuit-python/bin/ --recursive --no-progress --region us-east-1"
|
|
|
|
env:
|
|
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
|
|
|
if: github.event_name == 'push' || (github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested'))
|