change path #16
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: C/C++ CI | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
branches: ["master"] | |
jobs: | |
build_on_ubuntu_22_04: | |
runs-on: [ubuntu-22.04] | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v3 | |
- name: "Checkout capicxx-core-runtime" | |
uses: actions/checkout@v3 | |
with: | |
repository: COVESA/capicxx-core-runtime | |
path: "capicxx-core-runtime" | |
- name: "Checkout vsomeip" | |
uses: actions/checkout@v3 | |
with: | |
repository: COVESA/vsomeip | |
path: "vsomeip" | |
- name: Install googletest | |
run: | | |
sudo apt-get update -qq | |
sudo apt-get install -y googletest | |
- name: "Build capicxx-core-runtime" | |
run: | | |
cmake -S capicxx-core-runtime -B build-core-runtime -D CMAKE_INSTALL_PREFIX=install | |
cmake --build build-core-runtime --target install | |
- name: Ubuntu - Install boost 1.83.0 with gcc and x86 | |
uses: MarkusJx/[email protected] | |
id: ubuntu-gcc-1_83-x86 | |
with: | |
boost_version: 1.83.0 | |
platform_version: 20.04 | |
boost_install_dir: /home/runner | |
toolset: gcc | |
arch: x86 | |
cache: true | |
- name: "Build vsomeip" | |
run: | | |
cmake -S vsomeip -B vsomeip -D GTEST_ROOT=/usr/src/googletest -D BOOST_ROOT=/home/runner/boost/boost/ -D CMAKE_PREFIX_PATH=install -D CMAKE_INSTALL_PREFIX=install | |
cmake --build vsomeip | |
cmake --install vsomeip --strip | |
- name: "Build capicxx-someip-runtime" | |
run: | | |
cmake -S . -B build-someip-runtime -D GTEST_ROOT=/usr/src/googletest -D CMAKE_PREFIX_PATH=install -D CMAKE_INSTALL_PREFIX=install | |
cmake --build build-someip-runtime | |
cmake --install build-someip-runtime --strip | |
build_on_windows_latest: | |
runs-on: windows-latest | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v3 | |
- name: "Checkout capicxx-core-runtime" | |
uses: actions/checkout@v3 | |
with: | |
repository: COVESA/capicxx-core-runtime | |
path: "capicxx-core-runtime" | |
- name: "Checkout vsomeip" | |
uses: actions/checkout@v3 | |
with: | |
repository: COVESA/vsomeip | |
path: "vsomeip" | |
- name: "Checkout googletest" | |
uses: actions/checkout@v3 | |
with: | |
repository: google/googletest | |
path: "googletest" | |
- name: Print GITHUB_WORKSPACE | |
run: echo $env:GITHUB_WORKSPACE | |
- name: List directory contents | |
run: ls $env:GITHUB_WORKSPACE | |
- name: Verify googletest contents | |
run: ls $env:GITHUB_WORKSPACE/googletest | |
- name: Windows - Install boost 1.83.0 with gcc and x86 | |
uses: MarkusJx/[email protected] | |
id: windows-gcc-1_83-x86 | |
with: | |
boost_version: 1.83.0 | |
platform: windows | |
boost_install_dir: C:\runner | |
toolset: msvc | |
arch: x86 | |
cache: true | |
- name: "Build capicxx-core-runtime" | |
run: | | |
cmake -S capicxx-core-runtime -B build-core-runtime -D BOOST_ROOT=C:\runner\boost -D CMAKE_PREFIX_PATH=${{ runner.workspace }}\capicxx-someip-runtime\install -DCMAKE_INSTALL_PREFIX=${{ runner.workspace }}\capicxx-someip-runtime\install | |
cmake --build build-core-runtime --target install | |
- name: "Build vsomeip" | |
run: | | |
cmake -S vsomeip -B vsomeip -D GTEST_ROOT=${{ runner.workspace }}\capicxx-someip-runtime\googletest -D BOOST_ROOT=C:\runner\boost -D CMAKE_PREFIX_PATH=${{ runner.workspace }}\install -D CMAKE_INSTALL_PREFIX=${{ runner.workspace }}\install | |
cmake --build vsomeip | |
cmake --install vsomeip --strip | |
- name: "Build capicxx-someip-runtime" | |
run: | | |
cmake -S . -B build-someip-runtime -D GTEST_ROOT=${{ runner.workspace }}\capicxx-someip-runtime\googletest -D CMAKE_PREFIX_PATH=${{ runner.workspace }}\install -D CMAKE_INSTALL_PREFIX=${{ runner.workspace }}\install | |
cmake --build build-someip-runtime | |
cmake --install build-someip-runtime --strip |