CI/CD: Add tests to workflows #21
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 framework on Linux | |
on: | |
# execute on every PR made targeting the branches bellow | |
pull_request: | |
branches: | |
- master | |
- develop # can be removed on master merge | |
paths: # we only include paths critical for building to avoid unnecessary runs | |
- src/** | |
- include/** | |
- scripts/cmake/** | |
- tests/** | |
- .github/workflows/** # only for testing this PR | |
# execute on every push made targeting the branches bellow | |
push: | |
branches: | |
- master | |
- develop # can be removed on master merge | |
paths: # we only include paths critical for building to avoid unnecessary runs | |
- src/** | |
- include/** | |
- scripts/cmake/** | |
jobs: | |
build-linux: | |
runs-on: ubuntu-22.04 | |
env: | |
TEST_ENABLED: ${{ github.event_name == 'pull_request' && 'ON' || 'OFF' }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Create dependencies build space | |
run: mkdir dependencies | |
shell: bash | |
- name: Install dependencies | |
working-directory: dependencies | |
run: | | |
echo Updating CMAKE... | |
wget https://github.com/Kitware/CMake/releases/download/v3.29.3/cmake-3.29.3-linux-x86_64.sh | |
sudo apt remove cmake | |
sudo apt purge --auto-remove cmake | |
sudo bash cmake-3.29.3-linux-x86_64.sh --skip-license --exclude-subdir --prefix=/usr/local | |
echo Installing Qt... | |
sudo apt update | |
sudo apt install \ | |
qtbase5-dev \ | |
libqt5xmlpatterns5-dev \ | |
libxerces-c-dev \ | |
pkg-config | |
echo Dependencies installed. | |
shell: bash | |
- name: Install gtest | |
working-directory: dependencies | |
if: github.event_name == 'pull_request' | |
run: | | |
echo Installing gtest... | |
git clone https://github.com/google/googletest.git -b release-1.10.0 | |
cd googletest # Main directory of the cloned repository. | |
mkdir build # Create a directory to hold the build output. | |
cd build | |
cmake .. # Generate native build scripts for GoogleTest. | |
make | |
sudo make install # Install in /usr/local/ by default | |
echo Gtest installed. | |
shell: bash | |
- name: Build framework | |
# Currently this is building without the XSD file. If we want to expose | |
# the build artifact after, we might as well need to add the XSD file. | |
run: | | |
echo Building framework... | |
cmake -G "Unix Makefiles" -B./build -S . \ | |
-DCMAKE_INSTALL_PREFIX="/home/$(whoami)/qc-build" \ | |
-DENABLE_FUNCTIONAL_TESTS=$TEST_ENABLED -DXERCES_ROOT="/usr" \ | |
-DQt5_DIR="/usr/lib/x86_64-linux-gnu/cmake/Qt5/" \ | |
-DQt5XmlPatterns_DIR="/usr/lib/x86_64-linux-gnu/cmake/Qt5XmlPatterns/" | |
cmake --build ./build --target install --config Release -j4 | |
cmake --install ./build | |
echo Done. | |
shell: bash | |
- name: Test | |
if: github.event_name == 'pull_request' | |
run: | | |
echo Starting tests... | |
cd ./build/test/function | |
./examples/example_checker_bundle/src/example_checker_bundle_tester | |
./report_modules/report_module_gui/src/report_module_gui_tester | |
./report_modules/report_module_text/src/report_module_text_tester | |
./result_pooling/src/result_pooling_tester | |
echo All tests done. | |
shell: bash |