Feature/reconstruct sstd terp var #197
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: Ubuntu Env | |
on: | |
push: | |
branches: [ main, dev, develop ] | |
pull_request: | |
branches: [ main, dev, develop ] | |
jobs: | |
Build-and-Test: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Python | |
run: | | |
sudo apt install -y python3-numpy | |
sudo apt install -y python3-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 |