forked from COVESA/capicxx-dbus-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ricardo Roldao
authored and
Ricardo Roldao
committed
May 20, 2024
1 parent
9fa863c
commit 79b4567
Showing
1 changed file
with
12 additions
and
12 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,16 +85,16 @@ jobs: | |
ref: R_2_2_9 | ||
path: "libexpat" | ||
|
||
# - 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: 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 expat" | ||
run: | | ||
|
@@ -117,7 +117,7 @@ jobs: | |
- name: "Build capicxx-core-runtime" | ||
run: | | ||
cmake -S capicxx-core-runtime -B build-core-runtime -DCMAKE_INSTALL_PREFIX=${{ runner.workspace }}\install | ||
cmake -S capicxx-core-runtime -B build-core-runtime -D BOOST_ROOT=C:\runner\boost -DCMAKE_INSTALL_PREFIX=${{ runner.workspace }}\install | ||
cmake --build build-core-runtime --target install | ||
- name: "Build capicxx-dbus-runtime" | ||
|
@@ -143,7 +143,7 @@ jobs: | |
Start-Sleep -Seconds 1 | ||
$env:DBUS_SESSION_BUS_ADDRESS = Receive-Job $dbus_daemon | ||
try { | ||
env -C ${{ runner.workspace }}\capicxx-dbus-runtime\build-dbus-runtime\src\test ctest -V | ||
ctest --test-dir ${{ runner.workspace }}\capicxx-dbus-runtime\build-dbus-runtime\src\test -V | ||
exit $LASTEXITCODE | ||
} finally { | ||
Stop-Job $dbus_daemon | ||
|