refactor: update Dockerfile (modern practices, customizable image) #44
Workflow file for this run
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: | |
pull_request: | |
schedule: | |
- cron: '0 12 */7 * *' | |
env: | |
BUILD_TYPE: Debug | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Install dependencies | |
run: sudo apt-get install libboost-system-dev libmariadb-dev-compat socat | |
- name: Configure CMake | |
run: | | |
mkdir ${{github.workspace}}/build | |
cd ${{github.workspace}}/build | |
cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DTEST_EXTENDED_ENABLED=ON .. | |
- name: Build | |
working-directory: ${{github.workspace}}/build | |
run: | | |
cmake --build . --parallel 6 | |
cmake --build . --parallel 6 --target test_odr | |
- name: Test | |
working-directory: ${{github.workspace}}/build | |
run: ctest --output-on-failure |