Add Var::getVar #121
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: "Build & Test" | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: turtlebrowser/get-conan@main | |
- name: Run Conan Install | |
run: | | |
conan profile detect | |
conan profile detect --name debug | |
echo "&:build_type=Debug" >> $(conan profile path debug) | |
pushd ~/.conan2/profiles | |
sed -i 's/gnu17/17/g' * | |
popd | |
conan install -of . -pr debug -o with_tests=True . | |
- name: Run CMake | |
run: cmake --preset conan-debug -DUSE_COVERAGE=ON . | |
- name: Compile | |
run: cmake --build build/Debug --target tests | |
- name: Run Tests | |
run: ./build/Debug/test/tests --log_format=JUNIT --log_level=all --log_sink=boosttest.xml | |
- name: Install GCovr | |
run: pip install gcovr | |
- name: Extract Coverage | |
run: gcovr -r . -e ./test --object-directory=./build/Debug/CMakeFiles --exclude-unreachable-branches --exclude-throw-branches -b --sonarqube coverage.xml --xml cobertura.xml | |
- uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ./boosttest.xml,./coverage.xml,./cobertura.xml | |
verbose: true # optional (default = false) | |
fail_ci_if_error: true | |
test_release_win: | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: turtlebrowser/get-conan@main | |
- uses: ilammy/msvc-dev-cmd@v1 | |
- name: Run Conan Install | |
run: | | |
conan profile detect | |
powershell -Command "(gc $(conan profile path default)) -replace 'compiler.cppstd=14', 'compiler.cppstd=17' | Out-File -encoding ASCII $(conan profile path default)" | |
conan install -of . -o with_tests=True . | |
- name: Run CMake | |
run: cmake --preset conan-default . | |
- name: Compile | |
run: cmake --build build --preset conan-release --target tests | |
- name: Run Tests | |
run: ./build/test/Release/tests.exe | |
test_without_conan: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install parallelism library for C++ | |
run: sudo apt update && sudo apt install libtbb12 | |
- uses: MarkusJx/install-boost@v2.4.1 | |
with: | |
boost_version: 1.84.0 | |
- name: Install SCIP | |
run: | | |
wget https://github.com/scipopt/scip/releases/download/v920/SCIPOptSuite-9.2.0-Linux-ubuntu22.sh | |
chmod +x SCIPOptSuite-9.2.0-Linux-ubuntu22.sh | |
./SCIPOptSuite-9.2.0-Linux-ubuntu22.sh --skip-license | |
- name: Build SCIP++ | |
run: | | |
CMAKE_PREFIX_PATH=./lib/cmake/scip:./boost/boost/lib/cmake/Boost-1.84.0 cmake -DBUILD_TESTS=ON . | |
make -j tests | |
- name: Run tests | |
run: ./test/tests | |
test_release_inx: | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, macos-13 ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: turtlebrowser/get-conan@main | |
- name: Run Conan Install | |
run: | | |
conan profile detect | |
pushd ~/.conan2/profiles | |
sed -i'' -e 's/gnu17/17/g' * | |
popd | |
conan install -of . -o with_tests=True --build=missing . | |
- name: Run CMake | |
run: cmake --preset conan-release . | |
- name: Compile | |
run: cmake --build build/Release --target tests | |
- name: Run Tests | |
run: ./build/Release/test/tests | |
clang_tidy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: turtlebrowser/get-conan@main | |
- name: Run Conan Install | |
run: | | |
conan profile detect | |
pushd ~/.conan2/profiles | |
sed -i 's/gnu17/17/g' * | |
popd | |
conan install -of . . | |
- name: Create CMake Compilation Database | |
run: cmake --preset conan-release -DCMAKE_EXPORT_COMPILE_COMMANDS=ON . | |
- name: Run Clang-Tidy | |
run: clang-tidy-14 -p build/Release source/*.cpp include/**/*.hpp | |
clang_format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: DoozyX/clang-format-lint-action@v0.16.2 | |
with: | |
source: source include test | |
extensions: 'hpp,cpp' | |
clangFormatVersion: 17 | |
doxygen: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ssciwr/doxygen-install@v1 | |
with: | |
version: "1.12.0" | |
- uses: ts-graphviz/setup-graphviz@v1 | |
- name: Prepare Doxygen Config | |
run: echo "PROJECT_NUMBER = ${GITHUB_REF}" >> Doxyfile | |
- name: Run Doxygen | |
run: doxygen | |
- name: Zip HTML Docu | |
run: zip -q -9 -r html.zip html | |
- name: Store HTML Docu | |
uses: actions/upload-artifact@v3 | |
with: | |
name: doxygen-html | |
path: html.zip | |
retention-days: 2 |