CI/CD: Add build GitHub Actions workflows #11
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/** | |
- .github/** # 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 | |
environment: Build | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- 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 dev_essential... | |
git clone https://github.com/cariad-tech/dev_essential.git | |
cd dev_essential | |
echo '#include <new>' | cat - include/a_util/memory/detail/stack_ptr_impl.h > temp && mv temp include/a_util/memory/detail/stack_ptr_impl.h | |
cmake -H. -B"/home/$(whoami)/dev_essential/build" \ | |
-G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX="/home/$(whoami)/dev_essential/install" \ | |
-DCMAKE_BUILD_TYPE=RelWithDebInfo | |
cmake --build "/home/$(whoami)/dev_essential/build" \ | |
--target install \ | |
--config RelWithDebInfo | |
echo Installing Qt... | |
sudo apt update | |
sudo apt install \ | |
qtbase5-dev \ | |
libqt5xmlpatterns5-dev \ | |
libxerces-c-dev \ | |
pkg-config | |
echo Dependencies installed. | |
shell: bash | |
- name: Build framework | |
working-directory: qc-framework | |
run: | | |
echo Building framework... | |
cmake -G "Unix Makefiles" -B./build -S . -DCMAKE_INSTALL_PREFIX="/home/$(whoami)/qc-build" \ | |
-DENABLE_FUNCTIONAL_TESTS=OFF -DXERCES_ROOT="/usr" \ | |
-DQt5_DIR="/usr/lib/x86_64-linux-gnu/cmake/Qt5/" \ | |
-DQt5XmlPatterns_DIR="/usr/lib/x86_64-linux-gnu/cmake/Qt5XmlPatterns/" \ | |
-Ddev_essential_DIR="/home/$(whoami)/dev_essential/install/lib/cmake/dev_essential" | |
cmake --build ./build --target install --config Release -j4 | |
cmake --install ./build | |
echo Done. | |
shell: bash |