doc: update doc for how to use platform-nuclei on GD32VW553H Evaluati… #27
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Examples | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-20.04, ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: "recursive" | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.9" | |
- name: Install dependencies | |
run: | | |
pip install -U https://github.com/platformio/platformio/archive/develop.zip | |
pip install wget requests | |
- name: Caching Nuclei Tools | |
uses: actions/cache@v3 | |
with: | |
path: prebuilt_dlcache | |
key: build | |
- name: Install and Setup Nuclei Tools | |
run: | | |
python3 -u .github/prepare_tools.py --install | |
- name: Upload cached packages | |
uses: actions/upload-artifact@v3 | |
with: | |
name: prebuilt_caching_${{ matrix.os }} | |
path: | | |
prebuilt_dlcache | |
- name: Setup PIO Packages | |
run: | | |
python3 -u .github/prepare_tools.py --pio | |
- name: Build examples | |
run: | | |
python3 -u .github/build_examples.py |