testing global Time Aware Info #269
Workflow file for this run
This file contains hidden or 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
| on: | |
| push: | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-22.04, ubuntu-24.04] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt update | |
| sudo apt install -y bear clang-format clang-tidy clang-tools libblas-dev libgsl-dev swig gcc g++ make python3 python3-pip | |
| pip3 install numpy | |
| - name: Build using make and generate compile commands | |
| run: | | |
| make clean | |
| CONDA_PREFIX=/dummy-prefix PIP=pip3 PYTHON=python3 bear -- make -j$(nproc) | |
| # - name: Build using make and generate compile commands | |
| # run: | | |
| # bash ./tools/static-analyser.sh |