|
|
|
@ -16,46 +16,67 @@ concurrency:
|
|
|
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
|
|
env:
|
|
|
|
|
CACHE_SUBMODULES: "['extmod/ulab', 'lib/', 'tools/']"
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
test:
|
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
|
outputs:
|
|
|
|
|
build-doc: ${{ steps.set-matrix.outputs.build-doc }}
|
|
|
|
|
boards-arm: ${{ steps.set-matrix.outputs.boards-arm }}
|
|
|
|
|
boards-riscv: ${{ steps.set-matrix.outputs.boards-riscv }}
|
|
|
|
|
boards-espressif: ${{ steps.set-matrix.outputs.boards-espressif }}
|
|
|
|
|
boards-aarch: ${{ steps.set-matrix.outputs.boards-aarch }}
|
|
|
|
|
boards-arm: ${{ steps.set-matrix.outputs.boards-arm }}
|
|
|
|
|
boards-espressif: ${{ steps.set-matrix.outputs.boards-espressif }}
|
|
|
|
|
boards-riscv: ${{ steps.set-matrix.outputs.boards-riscv }}
|
|
|
|
|
cp-version: ${{ steps.cp-version.outputs.cp-version }}
|
|
|
|
|
steps:
|
|
|
|
|
- name: Dump GitHub context
|
|
|
|
|
run: echo "$GITHUB_CONTEXT"
|
|
|
|
|
env:
|
|
|
|
|
GITHUB_CONTEXT: ${{ toJson(github) }}
|
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
- name: Set up repository
|
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
with:
|
|
|
|
|
submodules: false
|
|
|
|
|
fetch-depth: 1
|
|
|
|
|
- name: Set up Python 3
|
|
|
|
|
- name: Set up python
|
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
|
with:
|
|
|
|
|
python-version: "3.x"
|
|
|
|
|
- name: Get CP deps
|
|
|
|
|
run: python tools/ci_fetch_deps.py test ${{ github.sha }}
|
|
|
|
|
- name: CircuitPython version
|
|
|
|
|
- name: Duplicate USB VID/PID check
|
|
|
|
|
run: python3 -u -m tools.ci_check_duplicate_usb_vid_pid
|
|
|
|
|
- name: Create submodule status
|
|
|
|
|
run: git submodule status ${{ join(fromJSON(env.CACHE_SUBMODULES), ' ') }} >> submodule_status
|
|
|
|
|
- name: Cache submodules
|
|
|
|
|
uses: actions/cache@v3
|
|
|
|
|
with:
|
|
|
|
|
path: ".git/modules/\n${{ join(fromJSON(env.CACHE_SUBMODULES), '\n') }}"
|
|
|
|
|
key: submodules-common-${{ hashFiles('submodule_status') }}
|
|
|
|
|
- name: CircuitPython dependencies
|
|
|
|
|
run: |
|
|
|
|
|
tools/describe || git log --parents HEAD~4..
|
|
|
|
|
echo >>$GITHUB_ENV CP_VERSION=$(tools/describe)
|
|
|
|
|
python tools/ci_fetch_deps.py ${{ github.job }}
|
|
|
|
|
echo "::group::Fetch history and tags"
|
|
|
|
|
git fetch --no-recurse-submodules --shallow-since="2021-07-01" --tags https://github.com/adafruit/circuitpython HEAD
|
|
|
|
|
git fetch --no-recurse-submodules --shallow-since="2021-07-01" origin $GITHUB_SHA
|
|
|
|
|
git repack -d
|
|
|
|
|
echo "::endgroup::"
|
|
|
|
|
- name: CircuitPython version
|
|
|
|
|
id: cp-version
|
|
|
|
|
run: |
|
|
|
|
|
CP_VERSION=$(tools/describe)
|
|
|
|
|
echo "$CP_VERSION"
|
|
|
|
|
echo "CP_VERSION=$CP_VERSION" >> $GITHUB_ENV
|
|
|
|
|
echo "cp-version=$CP_VERSION" >> $GITHUB_OUTPUT
|
|
|
|
|
- name: Install dependencies
|
|
|
|
|
run: |
|
|
|
|
|
sudo apt-get update
|
|
|
|
|
sudo apt-get install -y eatmydata
|
|
|
|
|
sudo eatmydata apt-get install -y gettext gcc-aarch64-linux-gnu mingw-w64
|
|
|
|
|
pip install -r requirements-ci.txt -r requirements-dev.txt
|
|
|
|
|
pip install -r requirements-dev.txt
|
|
|
|
|
- name: Versions
|
|
|
|
|
run: |
|
|
|
|
|
gcc --version
|
|
|
|
|
python3 --version
|
|
|
|
|
- name: Duplicate USB VID/PID Check
|
|
|
|
|
run: python3 -u -m tools.ci_check_duplicate_usb_vid_pid
|
|
|
|
|
- name: Build mpy-cross
|
|
|
|
|
run: make -C mpy-cross -j2
|
|
|
|
|
- name: Build unix port
|
|
|
|
@ -114,13 +135,16 @@ jobs:
|
|
|
|
|
with:
|
|
|
|
|
name: mpy-cross.static-x64-windows
|
|
|
|
|
path: mpy-cross/mpy-cross.static.exe
|
|
|
|
|
- name: Upload mpy-cross builds to S3
|
|
|
|
|
if: (github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository_owner == 'adafruit') || (github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested'))
|
|
|
|
|
- name: Upload to S3
|
|
|
|
|
if: >-
|
|
|
|
|
(github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository_owner == 'adafruit') ||
|
|
|
|
|
(github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested'))
|
|
|
|
|
env:
|
|
|
|
|
AWS_PAGER: ''
|
|
|
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
|
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
|
|
|
|
run: |
|
|
|
|
|
pip install awscli
|
|
|
|
|
[ -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
|
|
|
|
|
[ -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
|
|
|
|
@ -160,29 +184,35 @@ jobs:
|
|
|
|
|
|
|
|
|
|
mpy-cross-mac:
|
|
|
|
|
runs-on: macos-11
|
|
|
|
|
steps:
|
|
|
|
|
- name: Dump GitHub context
|
|
|
|
|
needs: test
|
|
|
|
|
if: >-
|
|
|
|
|
needs.test.outputs.boards-aarch != '[]' ||
|
|
|
|
|
needs.test.outputs.boards-arm != '[]' ||
|
|
|
|
|
needs.test.outputs.boards-espressif != '[]' ||
|
|
|
|
|
needs.test.outputs.boards-riscv != '[]'
|
|
|
|
|
env:
|
|
|
|
|
GITHUB_CONTEXT: ${{ toJson(github) }}
|
|
|
|
|
run: echo "$GITHUB_CONTEXT"
|
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
CP_VERSION: ${{ needs.test.outputs.cp-version }}
|
|
|
|
|
steps:
|
|
|
|
|
- name: Set up repository
|
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
with:
|
|
|
|
|
submodules: false
|
|
|
|
|
fetch-depth: 1
|
|
|
|
|
- name: Set up Python 3
|
|
|
|
|
- name: Set up python
|
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
|
with:
|
|
|
|
|
python-version: "3.10"
|
|
|
|
|
- name: Get CP deps
|
|
|
|
|
run: python tools/ci_fetch_deps.py mpy-cross-mac ${{ github.sha }}
|
|
|
|
|
python-version: "3.x"
|
|
|
|
|
- name: Create submodule status
|
|
|
|
|
run: git submodule status ${{ join(fromJSON(env.CACHE_SUBMODULES), ' ') }} >> submodule_status
|
|
|
|
|
- name: Restore submodules
|
|
|
|
|
uses: actions/cache/restore@v3
|
|
|
|
|
with:
|
|
|
|
|
path: ".git/modules/\n${{ join(fromJSON(env.CACHE_SUBMODULES), '\n') }}"
|
|
|
|
|
key: submodules-common-${{ hashFiles('submodule_status') }}
|
|
|
|
|
- name: CircuitPython dependencies
|
|
|
|
|
run: python tools/ci_fetch_deps.py ${{ github.job }}
|
|
|
|
|
- name: CircuitPython version
|
|
|
|
|
run: |
|
|
|
|
|
tools/describe || git log --parents HEAD~4..
|
|
|
|
|
echo >>$GITHUB_ENV CP_VERSION=$(tools/describe)
|
|
|
|
|
- name: Install dependencies
|
|
|
|
|
run: |
|
|
|
|
|
brew install gettext
|
|
|
|
|
echo >>$GITHUB_PATH /usr/local/opt/gettext/bin
|
|
|
|
|
run: tools/describe
|
|
|
|
|
- name: Versions
|
|
|
|
|
run: |
|
|
|
|
|
gcc --version
|
|
|
|
@ -222,27 +252,35 @@ jobs:
|
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
|
needs: test
|
|
|
|
|
if: ${{ needs.test.outputs.build-doc == 'True' }}
|
|
|
|
|
env:
|
|
|
|
|
CP_VERSION: ${{ needs.test.outputs.cp-version }}
|
|
|
|
|
steps:
|
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
- name: Set up repository
|
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
with:
|
|
|
|
|
submodules: false
|
|
|
|
|
fetch-depth: 1
|
|
|
|
|
- name: Get CP deps
|
|
|
|
|
run: python tools/ci_fetch_deps.py docs ${{ github.sha }}
|
|
|
|
|
- name: Create submodule status
|
|
|
|
|
run: git submodule status ${{ join(fromJSON(env.CACHE_SUBMODULES), ' ') }} >> submodule_status
|
|
|
|
|
- name: Restore submodules
|
|
|
|
|
uses: actions/cache/restore@v3
|
|
|
|
|
with:
|
|
|
|
|
path: ".git/modules/\n${{ join(fromJSON(env.CACHE_SUBMODULES), '\n') }}"
|
|
|
|
|
key: submodules-common-${{ hashFiles('submodule_status') }}
|
|
|
|
|
- name: CircuitPython dependencies
|
|
|
|
|
run: python tools/ci_fetch_deps.py ${{ github.job }}
|
|
|
|
|
- name: CircuitPython version
|
|
|
|
|
run: |
|
|
|
|
|
tools/describe || git log --parents HEAD~4..
|
|
|
|
|
echo >>$GITHUB_ENV CP_VERSION=$(tools/describe)
|
|
|
|
|
- name: Set up Python 3
|
|
|
|
|
run: tools/describe
|
|
|
|
|
- name: Set up python
|
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
|
with:
|
|
|
|
|
python-version: "3.10"
|
|
|
|
|
python-version: "3.x"
|
|
|
|
|
- name: Install dependencies
|
|
|
|
|
run: |
|
|
|
|
|
sudo apt-get update
|
|
|
|
|
sudo apt-get install -y eatmydata
|
|
|
|
|
sudo eatmydata apt-get install -y latexmk librsvg2-bin texlive-fonts-recommended texlive-latex-recommended texlive-latex-extra
|
|
|
|
|
pip install -r requirements-ci.txt -r requirements-doc.txt
|
|
|
|
|
pip install -r requirements-doc.txt
|
|
|
|
|
- name: Build and Validate Stubs
|
|
|
|
|
run: make check-stubs -j2
|
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
|
|
@ -262,13 +300,16 @@ jobs:
|
|
|
|
|
with:
|
|
|
|
|
name: docs
|
|
|
|
|
path: _build/latex
|
|
|
|
|
- name: Upload stubs to S3
|
|
|
|
|
if: (github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository_owner == 'adafruit') || (github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested'))
|
|
|
|
|
- name: Upload to S3
|
|
|
|
|
if: >-
|
|
|
|
|
(github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository_owner == 'adafruit') ||
|
|
|
|
|
(github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested'))
|
|
|
|
|
env:
|
|
|
|
|
AWS_PAGER: ''
|
|
|
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
|
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
|
|
|
|
run: |
|
|
|
|
|
pip install awscli
|
|
|
|
|
zip -9r circuitpython-stubs.zip circuitpython-stubs
|
|
|
|
|
[ -z "$AWS_ACCESS_KEY_ID" ] || aws s3 cp circuitpython-stubs/dist/*.tar.gz s3://adafruit-circuit-python/bin/stubs/circuitpython-stubs-${{ env.CP_VERSION }}.zip --no-progress --region us-east-1
|
|
|
|
|
- name: Upload stubs to PyPi
|
|
|
|
@ -282,225 +323,40 @@ jobs:
|
|
|
|
|
[ -z "$TWINE_USERNAME" ] || twine upload circuitpython-stubs/dist/*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
build-arm:
|
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
|
needs: test
|
|
|
|
|
strategy:
|
|
|
|
|
fail-fast: false
|
|
|
|
|
matrix:
|
|
|
|
|
board: ${{ fromJSON(needs.test.outputs.boards-arm) }}
|
|
|
|
|
if: ${{ needs.test.outputs.boards-arm != '[]' }}
|
|
|
|
|
steps:
|
|
|
|
|
- name: Set up Python 3
|
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
|
with:
|
|
|
|
|
python-version: "3.10"
|
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
with:
|
|
|
|
|
submodules: false
|
|
|
|
|
fetch-depth: 1
|
|
|
|
|
- name: Get CP deps
|
|
|
|
|
run: python tools/ci_fetch_deps.py ${{ matrix.board }} ${{ github.sha }}
|
|
|
|
|
- uses: carlosperate/arm-none-eabi-gcc-action@v1
|
|
|
|
|
with:
|
|
|
|
|
release: '10-2020-q4'
|
|
|
|
|
- name: Install dependencies
|
|
|
|
|
run: |
|
|
|
|
|
sudo apt-get install -y gettext
|
|
|
|
|
pip install -r requirements-ci.txt -r requirements-dev.txt
|
|
|
|
|
- name: Versions
|
|
|
|
|
run: |
|
|
|
|
|
gcc --version
|
|
|
|
|
arm-none-eabi-gcc --version
|
|
|
|
|
python3 --version
|
|
|
|
|
- name: mpy-cross
|
|
|
|
|
run: make -C mpy-cross -j2
|
|
|
|
|
- name: Setup build failure matcher
|
|
|
|
|
run: echo "::add-matcher::$GITHUB_WORKSPACE/.github/workflows/match-build-fail.json"
|
|
|
|
|
- name: build
|
|
|
|
|
run: python3 -u build_release_files.py
|
|
|
|
|
working-directory: tools
|
|
|
|
|
env:
|
|
|
|
|
BOARDS: ${{ matrix.board }}
|
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
|
|
|
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_PAGER: ''
|
|
|
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
|
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
|
|
|
|
if: (github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository_owner == 'adafruit') || (github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested'))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
build-riscv:
|
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
|
needs: test
|
|
|
|
|
strategy:
|
|
|
|
|
fail-fast: false
|
|
|
|
|
matrix:
|
|
|
|
|
board: ${{ fromJSON(needs.test.outputs.boards-riscv) }}
|
|
|
|
|
if: ${{ needs.test.outputs.boards-riscv != '[]' }}
|
|
|
|
|
steps:
|
|
|
|
|
- name: Set up Python 3
|
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
|
with:
|
|
|
|
|
python-version: "3.10"
|
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
with:
|
|
|
|
|
submodules: false
|
|
|
|
|
fetch-depth: 1
|
|
|
|
|
- name: Get CP deps
|
|
|
|
|
run: python tools/ci_fetch_deps.py ${{ matrix.board }} ${{ github.sha }}
|
|
|
|
|
- name: Install dependencies
|
|
|
|
|
run: |
|
|
|
|
|
sudo apt-get install -y gettext
|
|
|
|
|
pip install -r requirements-ci.txt -r requirements-dev.txt
|
|
|
|
|
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
|
|
|
|
|
- name: Versions
|
|
|
|
|
run: |
|
|
|
|
|
gcc --version
|
|
|
|
|
riscv64-unknown-elf-gcc --version
|
|
|
|
|
python3 --version
|
|
|
|
|
- name: mpy-cross
|
|
|
|
|
run: make -C mpy-cross -j2
|
|
|
|
|
- name: Setup build failure matcher
|
|
|
|
|
run: echo "::add-matcher::$GITHUB_WORKSPACE/.github/workflows/match-build-fail.json"
|
|
|
|
|
- name: build
|
|
|
|
|
run: python3 -u build_release_files.py
|
|
|
|
|
working-directory: tools
|
|
|
|
|
env:
|
|
|
|
|
BOARDS: ${{ matrix.board }}
|
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
|
|
|
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_PAGER: ''
|
|
|
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
|
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
|
|
|
|
if: (github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository_owner == 'adafruit') || (github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested'))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
build-espressif:
|
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
|
needs: test
|
|
|
|
|
strategy:
|
|
|
|
|
fail-fast: false
|
|
|
|
|
matrix:
|
|
|
|
|
board: ${{ fromJSON(needs.test.outputs.boards-espressif) }}
|
|
|
|
|
if: ${{ needs.test.outputs.boards-espressif != '[]' }}
|
|
|
|
|
steps:
|
|
|
|
|
- name: Set up Python 3
|
|
|
|
|
id: py3
|
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
|
with:
|
|
|
|
|
python-version: "3.10"
|
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
with:
|
|
|
|
|
submodules: false
|
|
|
|
|
fetch-depth: 1
|
|
|
|
|
- name: Get CP deps
|
|
|
|
|
run: python tools/ci_fetch_deps.py ${{ matrix.board }} ${{ github.sha }}
|
|
|
|
|
- name: CircuitPython version
|
|
|
|
|
run: |
|
|
|
|
|
tools/describe || git log --parents HEAD~4..
|
|
|
|
|
echo >>$GITHUB_ENV CP_VERSION=$(tools/describe)
|
|
|
|
|
- uses: actions/cache@v3
|
|
|
|
|
name: Fetch IDF tool cache
|
|
|
|
|
id: idf-cache
|
|
|
|
|
with:
|
|
|
|
|
path: ${{ github.workspace }}/.idf_tools
|
|
|
|
|
key: ${{ runner.os }}-idf-tools-${{ hashFiles('.git/modules/ports/espressif/esp-idf/HEAD') }}-${{ steps.py3.outputs.python-path }}-20220404
|
|
|
|
|
- name: Clone IDF submodules
|
|
|
|
|
run: git submodule update --init $IDF_PATH
|
|
|
|
|
env:
|
|
|
|
|
IDF_PATH: ${{ github.workspace }}/ports/espressif/esp-idf
|
|
|
|
|
- name: Install IDF tools
|
|
|
|
|
run: |
|
|
|
|
|
echo "Installing ESP-IDF tools"
|
|
|
|
|
$IDF_PATH/tools/idf_tools.py --non-interactive install required
|
|
|
|
|
$IDF_PATH/tools/idf_tools.py --non-interactive install cmake
|
|
|
|
|
echo "Installing Python environment and packages"
|
|
|
|
|
$IDF_PATH/tools/idf_tools.py --non-interactive install-python-env
|
|
|
|
|
rm -rf $IDF_TOOLS_PATH/dist
|
|
|
|
|
env:
|
|
|
|
|
IDF_PATH: ${{ github.workspace }}/ports/espressif/esp-idf
|
|
|
|
|
IDF_TOOLS_PATH: ${{ github.workspace }}/.idf_tools
|
|
|
|
|
- name: Install dependencies
|
|
|
|
|
run: |
|
|
|
|
|
source $IDF_PATH/export.sh
|
|
|
|
|
sudo apt-get install -y gettext ninja-build
|
|
|
|
|
pip install -r requirements-ci.txt -r requirements-dev.txt
|
|
|
|
|
env:
|
|
|
|
|
IDF_PATH: ${{ github.workspace }}/ports/espressif/esp-idf
|
|
|
|
|
IDF_TOOLS_PATH: ${{ github.workspace }}/.idf_tools
|
|
|
|
|
- name: Versions
|
|
|
|
|
run: |
|
|
|
|
|
source $IDF_PATH/export.sh
|
|
|
|
|
gcc --version
|
|
|
|
|
python3 --version
|
|
|
|
|
ninja --version
|
|
|
|
|
cmake --version
|
|
|
|
|
shell: bash
|
|
|
|
|
env:
|
|
|
|
|
IDF_PATH: ${{ github.workspace }}/ports/espressif/esp-idf
|
|
|
|
|
IDF_TOOLS_PATH: ${{ github.workspace }}/.idf_tools
|
|
|
|
|
- name: mpy-cross
|
|
|
|
|
run: make -C mpy-cross -j2
|
|
|
|
|
- name: Setup build failure matcher
|
|
|
|
|
run: echo "::add-matcher::$GITHUB_WORKSPACE/.github/workflows/match-build-fail.json"
|
|
|
|
|
- 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/espressif/esp-idf
|
|
|
|
|
IDF_TOOLS_PATH: ${{ github.workspace }}/.idf_tools
|
|
|
|
|
BOARDS: ${{ matrix.board }}
|
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
|
|
|
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_PAGER: ''
|
|
|
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
|
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
|
|
|
|
if: (github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository_owner == 'adafruit') || (github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested'))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
build-aarch:
|
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
|
needs: test
|
|
|
|
|
if: ${{ needs.test.outputs.boards-aarch != '[]' }}
|
|
|
|
|
env:
|
|
|
|
|
CP_VERSION: ${{ needs.test.outputs.cp-version }}
|
|
|
|
|
strategy:
|
|
|
|
|
fail-fast: false
|
|
|
|
|
matrix:
|
|
|
|
|
board: ${{ fromJSON(needs.test.outputs.boards-aarch) }}
|
|
|
|
|
if: ${{ needs.test.outputs.boards-aarch != '[]' }}
|
|
|
|
|
steps:
|
|
|
|
|
- name: Set up Python 3
|
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
|
with:
|
|
|
|
|
python-version: "3.10"
|
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
- name: Set up repository
|
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
with:
|
|
|
|
|
submodules: false
|
|
|
|
|
fetch-depth: 1
|
|
|
|
|
- name: Get CP deps
|
|
|
|
|
run: python tools/ci_fetch_deps.py ${{ matrix.board }} ${{ github.sha }}
|
|
|
|
|
- name: Set up python
|
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
|
with:
|
|
|
|
|
python-version: "3.x"
|
|
|
|
|
- name: Create submodule status
|
|
|
|
|
run: git submodule status ${{ join(fromJSON(env.CACHE_SUBMODULES), ' ') }} >> submodule_status
|
|
|
|
|
- name: Restore submodules
|
|
|
|
|
uses: actions/cache/restore@v3
|
|
|
|
|
with:
|
|
|
|
|
path: ".git/modules/\n${{ join(fromJSON(env.CACHE_SUBMODULES), '\n') }}"
|
|
|
|
|
key: submodules-common-${{ hashFiles('submodule_status') }}
|
|
|
|
|
- name: CircuitPython dependencies
|
|
|
|
|
id: cp-deps
|
|
|
|
|
run: python tools/ci_fetch_deps.py ${{ matrix.board }}
|
|
|
|
|
- name: Install dependencies
|
|
|
|
|
run: |
|
|
|
|
|
sudo apt-get install -y gettext mtools
|
|
|
|
|
pip install -r requirements-ci.txt -r requirements-dev.txt
|
|
|
|
|
pip install -r requirements-dev.txt
|
|
|
|
|
wget --no-verbose https://adafruit-circuit-python.s3.amazonaws.com/gcc-arm-10.3-2021.07-x86_64-aarch64-none-elf.tar.xz
|
|
|
|
|
sudo tar -C /usr --strip-components=1 -xaf gcc-arm-10.3-2021.07-x86_64-aarch64-none-elf.tar.xz
|
|
|
|
|
- uses: carlosperate/arm-none-eabi-gcc-action@v1
|
|
|
|
@ -522,11 +378,12 @@ jobs:
|
|
|
|
|
arm-none-eabi-gcc --version
|
|
|
|
|
python3 --version
|
|
|
|
|
mkfs.fat --version || true
|
|
|
|
|
- name: mpy-cross
|
|
|
|
|
- name: Build mpy-cross
|
|
|
|
|
if: ${{ steps.cp-deps.outputs.frozen_tags == 'True' }}
|
|
|
|
|
run: make -C mpy-cross -j2
|
|
|
|
|
- name: Setup build failure matcher
|
|
|
|
|
run: echo "::add-matcher::$GITHUB_WORKSPACE/.github/workflows/match-build-fail.json"
|
|
|
|
|
- name: build
|
|
|
|
|
- name: Build
|
|
|
|
|
run: python3 -u build_release_files.py
|
|
|
|
|
working-directory: tools
|
|
|
|
|
env:
|
|
|
|
@ -536,9 +393,256 @@ jobs:
|
|
|
|
|
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"
|
|
|
|
|
if: >-
|
|
|
|
|
(github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository_owner == 'adafruit') ||
|
|
|
|
|
(github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested'))
|
|
|
|
|
run: |
|
|
|
|
|
pip install awscli
|
|
|
|
|
[ -z "$AWS_ACCESS_KEY_ID" ] || aws s3 cp bin/ s3://adafruit-circuit-python/bin/ --recursive --no-progress --region us-east-1
|
|
|
|
|
env:
|
|
|
|
|
AWS_PAGER: ''
|
|
|
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
|
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
build-arm:
|
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
|
needs: test
|
|
|
|
|
if: ${{ needs.test.outputs.boards-arm != '[]' }}
|
|
|
|
|
env:
|
|
|
|
|
CP_VERSION: ${{ needs.test.outputs.cp-version }}
|
|
|
|
|
strategy:
|
|
|
|
|
fail-fast: false
|
|
|
|
|
matrix:
|
|
|
|
|
board: ${{ fromJSON(needs.test.outputs.boards-arm) }}
|
|
|
|
|
steps:
|
|
|
|
|
- name: Set up repository
|
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
with:
|
|
|
|
|
submodules: false
|
|
|
|
|
fetch-depth: 1
|
|
|
|
|
- name: Set up python
|
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
|
with:
|
|
|
|
|
python-version: "3.x"
|
|
|
|
|
- name: Create submodule status
|
|
|
|
|
run: git submodule status ${{ join(fromJSON(env.CACHE_SUBMODULES), ' ') }} >> submodule_status
|
|
|
|
|
- name: Restore submodules
|
|
|
|
|
uses: actions/cache/restore@v3
|
|
|
|
|
with:
|
|
|
|
|
path: ".git/modules/\n${{ join(fromJSON(env.CACHE_SUBMODULES), '\n') }}"
|
|
|
|
|
key: submodules-common-${{ hashFiles('submodule_status') }}
|
|
|
|
|
- name: CircuitPython dependencies
|
|
|
|
|
id: cp-deps
|
|
|
|
|
run: python tools/ci_fetch_deps.py ${{ matrix.board }}
|
|
|
|
|
- uses: carlosperate/arm-none-eabi-gcc-action@v1
|
|
|
|
|
with:
|
|
|
|
|
release: '10-2020-q4'
|
|
|
|
|
- name: Install dependencies
|
|
|
|
|
run: |
|
|
|
|
|
sudo apt-get install -y gettext
|
|
|
|
|
pip install -r requirements-dev.txt
|
|
|
|
|
- name: Versions
|
|
|
|
|
run: |
|
|
|
|
|
gcc --version
|
|
|
|
|
arm-none-eabi-gcc --version
|
|
|
|
|
python3 --version
|
|
|
|
|
- name: Build mpy-cross
|
|
|
|
|
if: ${{ steps.cp-deps.outputs.frozen_tags == 'True' }}
|
|
|
|
|
run: make -C mpy-cross -j2
|
|
|
|
|
- name: Setup build failure matcher
|
|
|
|
|
run: echo "::add-matcher::$GITHUB_WORKSPACE/.github/workflows/match-build-fail.json"
|
|
|
|
|
- name: Build
|
|
|
|
|
run: python3 -u build_release_files.py
|
|
|
|
|
working-directory: tools
|
|
|
|
|
env:
|
|
|
|
|
BOARDS: ${{ matrix.board }}
|
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
|
|
|
with:
|
|
|
|
|
name: ${{ matrix.board }}
|
|
|
|
|
path: bin/${{ matrix.board }}
|
|
|
|
|
- name: Upload to S3
|
|
|
|
|
if: >-
|
|
|
|
|
(github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository_owner == 'adafruit') ||
|
|
|
|
|
(github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested'))
|
|
|
|
|
run: |
|
|
|
|
|
pip install awscli
|
|
|
|
|
[ -z "$AWS_ACCESS_KEY_ID" ] || aws s3 cp bin/ s3://adafruit-circuit-python/bin/ --recursive --no-progress --region us-east-1
|
|
|
|
|
env:
|
|
|
|
|
AWS_PAGER: ''
|
|
|
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
|
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
build-espressif:
|
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
|
needs: test
|
|
|
|
|
if: ${{ needs.test.outputs.boards-espressif != '[]' }}
|
|
|
|
|
env:
|
|
|
|
|
CP_VERSION: ${{ needs.test.outputs.cp-version }}
|
|
|
|
|
IDF_PATH: ${{ github.workspace }}/ports/espressif/esp-idf
|
|
|
|
|
IDF_TOOLS_PATH: ${{ github.workspace }}/.idf_tools
|
|
|
|
|
strategy:
|
|
|
|
|
fail-fast: false
|
|
|
|
|
matrix:
|
|
|
|
|
board: ${{ fromJSON(needs.test.outputs.boards-espressif) }}
|
|
|
|
|
steps:
|
|
|
|
|
- name: Set up repository
|
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
with:
|
|
|
|
|
submodules: false
|
|
|
|
|
fetch-depth: 1
|
|
|
|
|
- name: Set up python
|
|
|
|
|
id: setup-python
|
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
|
with:
|
|
|
|
|
python-version: "3.10"
|
|
|
|
|
- name: Create submodule status
|
|
|
|
|
run: git submodule status ${{ join(fromJSON(env.CACHE_SUBMODULES), ' ') }} >> submodule_status
|
|
|
|
|
- name: Restore submodules
|
|
|
|
|
uses: actions/cache/restore@v3
|
|
|
|
|
with:
|
|
|
|
|
path: ".git/modules/\n${{ join(fromJSON(env.CACHE_SUBMODULES), '\n') }}"
|
|
|
|
|
key: submodules-common-${{ hashFiles('submodule_status') }}
|
|
|
|
|
- name: Get IDF commit
|
|
|
|
|
id: idf-commit
|
|
|
|
|
run: |
|
|
|
|
|
COMMIT=$(git submodule status ports/espressif/esp-idf | grep -o -P '(?<=^-).*(?= )')
|
|
|
|
|
echo "$COMMIT"
|
|
|
|
|
echo "commit=$COMMIT" >> $GITHUB_OUTPUT
|
|
|
|
|
- name: Cache IDF submodules
|
|
|
|
|
uses: actions/cache@v3
|
|
|
|
|
with:
|
|
|
|
|
path: |
|
|
|
|
|
.git/modules/ports/espressif/esp-idf
|
|
|
|
|
ports/espressif/esp-idf
|
|
|
|
|
key: submodules-idf-${{ steps.idf-commit.outputs.commit }}
|
|
|
|
|
- name: CircuitPython dependencies
|
|
|
|
|
id: cp-deps
|
|
|
|
|
run: python tools/ci_fetch_deps.py ${{ matrix.board }}
|
|
|
|
|
- name: CircuitPython version
|
|
|
|
|
run: tools/describe
|
|
|
|
|
- name: Cache IDF tools
|
|
|
|
|
uses: actions/cache@v3
|
|
|
|
|
with:
|
|
|
|
|
path: ${{ env.IDF_TOOLS_PATH }}
|
|
|
|
|
key: ${{ runner.os }}-Python-${{ steps.setup-python.outputs.python-version }}-tools-idf-${{ steps.idf-commit.outputs.commit }}
|
|
|
|
|
- name: Clone IDF submodules
|
|
|
|
|
run: git submodule update --init --depth=1
|
|
|
|
|
working-directory: ${{ env.IDF_PATH }}
|
|
|
|
|
- name: Install IDF tools
|
|
|
|
|
run: |
|
|
|
|
|
echo "Installing ESP-IDF tools"
|
|
|
|
|
$IDF_PATH/tools/idf_tools.py --non-interactive install required
|
|
|
|
|
$IDF_PATH/tools/idf_tools.py --non-interactive install cmake
|
|
|
|
|
echo "Installing Python environment and packages"
|
|
|
|
|
$IDF_PATH/tools/idf_tools.py --non-interactive install-python-env
|
|
|
|
|
rm -rf $IDF_TOOLS_PATH/dist
|
|
|
|
|
- name: Install dependencies
|
|
|
|
|
run: |
|
|
|
|
|
source $IDF_PATH/export.sh
|
|
|
|
|
sudo apt-get install -y gettext ninja-build
|
|
|
|
|
pip install -r requirements-dev.txt
|
|
|
|
|
- name: Versions
|
|
|
|
|
run: |
|
|
|
|
|
source $IDF_PATH/export.sh
|
|
|
|
|
gcc --version
|
|
|
|
|
python3 --version
|
|
|
|
|
ninja --version
|
|
|
|
|
cmake --version
|
|
|
|
|
- name: Build mpy-cross
|
|
|
|
|
if: ${{ steps.cp-deps.outputs.frozen_tags == 'True' }}
|
|
|
|
|
run: make -C mpy-cross -j2
|
|
|
|
|
- name: Setup build failure matcher
|
|
|
|
|
run: echo "::add-matcher::$GITHUB_WORKSPACE/.github/workflows/match-build-fail.json"
|
|
|
|
|
- name: Build
|
|
|
|
|
run: |
|
|
|
|
|
source $IDF_PATH/export.sh
|
|
|
|
|
python3 -u build_release_files.py
|
|
|
|
|
working-directory: tools
|
|
|
|
|
env:
|
|
|
|
|
BOARDS: ${{ matrix.board }}
|
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
|
|
|
with:
|
|
|
|
|
name: ${{ matrix.board }}
|
|
|
|
|
path: bin/${{ matrix.board }}
|
|
|
|
|
- name: Upload to S3
|
|
|
|
|
if: >-
|
|
|
|
|
(github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository_owner == 'adafruit') ||
|
|
|
|
|
(github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested'))
|
|
|
|
|
run: |
|
|
|
|
|
pip install awscli
|
|
|
|
|
[ -z "$AWS_ACCESS_KEY_ID" ] || aws s3 cp bin/ s3://adafruit-circuit-python/bin/ --recursive --no-progress --region us-east-1
|
|
|
|
|
env:
|
|
|
|
|
AWS_PAGER: ''
|
|
|
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
|
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
build-riscv:
|
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
|
needs: test
|
|
|
|
|
if: ${{ needs.test.outputs.boards-riscv != '[]' }}
|
|
|
|
|
env:
|
|
|
|
|
CP_VERSION: ${{ needs.test.outputs.cp-version }}
|
|
|
|
|
strategy:
|
|
|
|
|
fail-fast: false
|
|
|
|
|
matrix:
|
|
|
|
|
board: ${{ fromJSON(needs.test.outputs.boards-riscv) }}
|
|
|
|
|
steps:
|
|
|
|
|
- name: Set up repository
|
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
with:
|
|
|
|
|
submodules: false
|
|
|
|
|
fetch-depth: 1
|
|
|
|
|
- name: Set up python
|
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
|
with:
|
|
|
|
|
python-version: "3.x"
|
|
|
|
|
- name: Create submodule status
|
|
|
|
|
run: git submodule status ${{ join(fromJSON(env.CACHE_SUBMODULES), ' ') }} >> submodule_status
|
|
|
|
|
- name: Restore submodules
|
|
|
|
|
uses: actions/cache/restore@v3
|
|
|
|
|
with:
|
|
|
|
|
path: ".git/modules/\n${{ join(fromJSON(env.CACHE_SUBMODULES), '\n') }}"
|
|
|
|
|
key: submodules-common-${{ hashFiles('submodule_status') }}
|
|
|
|
|
- name: CircuitPython dependencies
|
|
|
|
|
id: cp-deps
|
|
|
|
|
run: python tools/ci_fetch_deps.py ${{ matrix.board }}
|
|
|
|
|
- name: Install dependencies
|
|
|
|
|
run: |
|
|
|
|
|
sudo apt-get install -y gettext
|
|
|
|
|
pip install -r requirements-dev.txt
|
|
|
|
|
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
|
|
|
|
|
- name: Versions
|
|
|
|
|
run: |
|
|
|
|
|
gcc --version
|
|
|
|
|
riscv64-unknown-elf-gcc --version
|
|
|
|
|
python3 --version
|
|
|
|
|
- name: Build mpy-cross
|
|
|
|
|
if: ${{ steps.cp-deps.outputs.frozen_tags == 'True' }}
|
|
|
|
|
run: make -C mpy-cross -j2
|
|
|
|
|
- name: Setup build failure matcher
|
|
|
|
|
run: echo "::add-matcher::$GITHUB_WORKSPACE/.github/workflows/match-build-fail.json"
|
|
|
|
|
- name: Build
|
|
|
|
|
run: python3 -u build_release_files.py
|
|
|
|
|
working-directory: tools
|
|
|
|
|
env:
|
|
|
|
|
BOARDS: ${{ matrix.board }}
|
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
|
|
|
with:
|
|
|
|
|
name: ${{ matrix.board }}
|
|
|
|
|
path: bin/${{ matrix.board }}
|
|
|
|
|
- name: Upload to S3
|
|
|
|
|
if: >-
|
|
|
|
|
(github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository_owner == 'adafruit') ||
|
|
|
|
|
(github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested'))
|
|
|
|
|
run: |
|
|
|
|
|
pip install awscli
|
|
|
|
|
[ -z "$AWS_ACCESS_KEY_ID" ] || aws s3 cp bin/ s3://adafruit-circuit-python/bin/ --recursive --no-progress --region us-east-1
|
|
|
|
|
env:
|
|
|
|
|
AWS_PAGER: ''
|
|
|
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
|
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
|
|
|
|
if: (github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository_owner == 'adafruit') || (github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested'))
|
|
|
|
|