add test on Raspberry Pi OS (Arm64) Docker #173
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: Tests on Ubuntu | |
on: | |
push: | |
branches: [ main, dev, develop ] | |
pull_request: | |
branches: [ main, dev, develop ] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v2 | |
- name: Install Python | |
run: | | |
pip install numpy | |
pip install matplotlib | |
- name: Build googletest | |
run: | | |
make ./googletest-master/build/lib/libgtest.a | |
- name: Build SSTD | |
run: | | |
make FORCE_TO_MAKE_SSTD | |
- name: Build SSTD TESTS | |
run: | | |
make FORCE_TO_MAKE_TEST_EXE | |
- name: Build the others | |
run: | | |
make | |
- name: Run tests | |
run: | | |
./exe |