82 lines
2.5 KiB
YAML
82 lines
2.5 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
|
|
Build:
|
|
strategy:
|
|
matrix:
|
|
platform: ["arduino:avr", "arduino:samd"]
|
|
include:
|
|
- platform: "arduino:avr"
|
|
board: "arduino:avr:uno"
|
|
- platform: "arduino:samd"
|
|
board: "arduino:samd:arduino_zero_native"
|
|
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
run-build: ${{ (matrix.platform == "arduino:avr") || "contains(github.event.head_commit.message, 'CI_FORCE_BUILD'" || "contains(github.event.head_commit.message, 'Bump version to'" }}
|
|
|
|
steps:
|
|
- name: Install arduino-cli
|
|
if: ${{ run-build }}
|
|
run: |
|
|
mkdir -p ~/.local/bin
|
|
echo "::add-path::~/.local/bin"
|
|
curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | BINDIR=~/.local/bin sh
|
|
|
|
- name: Install platform
|
|
if: ${{ run-build }}
|
|
run: |
|
|
arduino-cli core update-index
|
|
arduino-cli core install ${{ matrix.platform }}
|
|
echo "::set-env name=WARNINGS::all"
|
|
|
|
- name: Checkout
|
|
if: ${{ run-build }}
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Build all examples
|
|
if: ${{ run-build }}
|
|
run: |
|
|
for example in $(find $PWD/examples -name '*.ino' | sort); do
|
|
# check whether to skip this sketch
|
|
if [ ! -z "$SKIP_PAT" ] && [[ ${example} =~ $SKIP_PAT ]]; then
|
|
# skip sketch
|
|
echo -e "\n\033[1;33mSkipped ${example##*/} (matched with $SKIP_PAT)\033[0m";
|
|
else
|
|
# build sketch
|
|
echo -e "\n\033[1;33mBuilding ${example##*/} ... \033[0m";
|
|
arduino-cli compile --libraries /home/runner/work/RadioLib --fqbn ${{ matrix.board }} $example --warnings=$WARNINGS
|
|
if [ $? -ne 0 ]; then
|
|
echo -e "\033[1;31m${example##*/} build FAILED\033[0m\n";
|
|
exit 1;
|
|
else
|
|
echo -e "\033[1;32m${example##*/} build PASSED\033[0m\n";
|
|
fi
|
|
fi
|
|
done
|
|
|
|
Doxygen:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Install Doxygen
|
|
run: |
|
|
sudo apt-get update;
|
|
sudo apt-get install -y doxygen;
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Generate docs
|
|
run: doxygen Doxyfile
|
|
|
|
- uses: JamesIves/github-pages-deploy-action@releases/v3
|
|
with:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
BRANCH: gh-pages
|
|
FOLDER: docs/html
|