Stable Atlas #17
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: C/C++ CI | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install valgrind | |
run: sudo apt-get install -y valgrind | |
# Run configure with high verbosity and valgrind on xconfig | |
- name: configure | |
run: | | |
mkdir build | |
cd build | |
../configure --cripple-atlas-performance -v 2 --valgrind | |