Merge branch 'topic/kliemann/bb-runtimes-79-native-cpu' into 'master' #409
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 | |
on: [pull_request, push] | |
jobs: | |
linux-build: | |
name: Build and test on Linux | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install Python 3.x (required for the testsuite) | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- run: pip3 install pycodestyle | |
- name: Python stylecheck | |
run: pycodestyle . --exclude=examples | |
- uses: ada-actions/toolchain@ce2021 | |
with: | |
distrib: community | |
- uses: ada-actions/toolchain@ce2021 | |
with: | |
distrib: community | |
target: arm-elf | |
- run: python3 $PWD/install.py --arch=arm-eabi | |
win-build: | |
name: Build and test on Windows | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: ada-actions/toolchain@ce2021 | |
with: | |
distrib: community | |
- uses: ada-actions/toolchain@ce2021 | |
with: | |
distrib: community | |
target: arm-elf | |
- name: Install Python 3.x (required for the testsuite) | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- run: python $PWD/install.py --arch=arm-eabi |