lay with matrix #81
Workflow file for this run
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: Arduino CI | |
# on which event should we start push, pullrequest or schedule dispatches | |
on: | |
- push | |
- pull_request | |
jobs: | |
build: | |
# python /home/des-epe-team/.arduino15/packages/Infineon/hardware/xmc/3.0.0/tools/xmc-flasher.py upload -d XMC1100-0064 -p /dev/ttyACM0 -f /tmp/arduino/sketches/B91C01BFF3AB128A10FE7B23FF310E46/readAngleTest.ino.hex | |
# we run this on selhosted runner, use labels to be more specific | |
runs-on: | |
- self-hosted | |
- X64 | |
- Linux | |
# board_manager: | |
# additional_urls: | |
# https://github.com/Infineon/XMC-for-Arduino/releases/latest/download/package_infineon_index.json | |
strategy: | |
matrix: | |
# example: [ | |
# examples/E9000SPC, | |
# examples/readAngleSpeedRevolutions, | |
# examples/readAngleTest, | |
# examples/readAngleValueProcessing, | |
# examples/readMultipleRegisters, | |
# examples/readSpeedProcessing, | |
# examples/sensorRegisters, | |
# examples/sensorType, | |
# examples/testSensorMainValues, | |
# examples/useMultipleSensors, | |
# examples/writeRegisters | |
# ] | |
# board packages we want to run | |
platform: [ | |
"arduino:avr", | |
"infineon:xmc" | |
] | |
include: | |
- platform: "arduino:avr" | |
fqbn: | |
- arduino:avr:uno | |
- platform: "infineon:xmc" | |
fqbn: | |
- infineon:xmc:XMC1100_XMC2GO | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Setup Arduino CLI | |
uses: arduino/setup-arduino-cli@v1 | |
- name: Install/Update Arduino Platform | |
run: | | |
arduino-cli core update-index | |
arduino-cli core install ${{ matrix.platform }} | |
# - name: Install repo as library | |
# run: | | |
# echo $HOME | |
# echo $GITHUB_WORKSPACE | |
# mkdir -p "$HOME/Arduino/libraries" | |
# ln -sf $GITHUB_WORKSPACE/ $HOME/Arduino/libraries/magnetic-angle-sensor | |
# - name: Compile Sketch | |
# run: | | |
# # chmod -R 777 /tmp/arduino/ | |
# arduino-cli compile --fqbn ${{ matrix.fqbn }} --libraries="." --libraries="$HOME/Arduino/libraries/." ${{ matrix.example }} | |