Feature/reconstruct sstd terp var #14
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: Debian Env | |
on: | |
push: | |
branches: [ main, dev, develop ] | |
pull_request: | |
branches: [ main, dev, develop ] | |
jobs: | |
Build-and-Test: | |
runs-on: ubuntu-24.04 | |
container: | |
image: debian:12 | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v4 | |
- name: Install build tools | |
run: | | |
apt-get update | |
apt-get install -y coreutils make gcc g++ cmake time | |
apt-get install -y python3-numpy 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 |