Initial HIP support #567
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-platformio | ||
on: | ||
push: | ||
branches: | ||
- 'master' | ||
tags: | ||
- 'v*' | ||
pull_request: | ||
branches: | ||
- '*' | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
test: [] | ||
Check failure on line 20 in .github/workflows/arduino-platformio.yml GitHub Actions / arduino-platformioInvalid workflow file
|
||
# TODO: re-enable arduino tests | ||
# test: [ufuncs, meta, utl] | ||
# TODO: re-enable manip & constexpr tests | ||
# test: [manip, ufuncs, meta, utl, constexpr] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.8' | ||
- name: Install PlatformIO | ||
run: | | ||
python -m pip install --upgrade pip --break-system-packages | ||
pip install --upgrade platformio --break-system-packages | ||
- name: Run PlatformIO CI | ||
run: | | ||
bash scripts/run_pio_test.sh -d arduino/${{ matrix.test }} |