This repository has been archived by the owner on May 16, 2024. It is now read-only.
Add deprecated warning to README.md #160
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: CMake (Ubuntu Linux) | |
on: [push, pull_request] | |
env: | |
BUILD_TYPE: RelWithDebInfo | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: mrts/qt-cmake-gtest-valgrind-ubuntu:v1.8 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Configure CMake | |
run: cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE -B build -S . | |
- name: Build | |
run: cmake --build build --config $BUILD_TYPE | |
- name: Test | |
run: ctest -V -C $BUILD_TYPE --test-dir build |