Skip to content

Commit

Permalink
2nd
Browse files Browse the repository at this point in the history
  • Loading branch information
Ricardo Roldao authored and Ricardo Roldao committed May 15, 2024
1 parent 511b10e commit 567a804
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,10 @@ jobs:
# arch: x86
# cache: true

- name: "Build expat"
run: |
cmake -A x64 -B build-expat -D CMAKE_INSTALL_PREFIX=${{ runner.workspace }}\install -S ${{ runner.workspace }}\capicxx-dbus-runtime\libexpat\expat
cmake --build build-expat --config Release --target install
# - name: "Build expat"
# run: |
# cmake -A x64 -B build-expat -D CMAKE_INSTALL_PREFIX=${{ runner.workspace }}\install -S ${{ runner.workspace }}\capicxx-dbus-runtime\libexpat\expat
# cmake --build build-expat --config Release --target install

- name: "Install dbus"
run: |
Expand All @@ -123,24 +123,24 @@ jobs:
}
foreach ($patch in $patches) {
git -C $dbus apply --verbose --no-index --ignore-whitespace $patch.FullName
git -C $dbus apply --verbose --whitespace=fix $patch.FullName
}
cmake -A x64 -B build-dbus\libdbus -D DBUS_BUILD_TESTS=N -D CMAKE_INSTALL_PREFIX=${{ runner.workspace }}\install -S ${{ runner.workspace }}\capicxx-dbus-runtime\dbus-1.13.6\cmake
cmake --build build-dbus\libdbus --config Release --target install
# cmake -A x64 -B build-dbus\libdbus -D DBUS_BUILD_TESTS=N -D CMAKE_INSTALL_PREFIX=${{ runner.workspace }}\install -S ${{ runner.workspace }}\capicxx-dbus-runtime\dbus-1.13.6\cmake
# cmake --build build-dbus\libdbus --config Release --target install

- name: List capi src
run: ls $env:GITHUB_WORKSPACE\src

- name: Verify dbus content
run: ls $env:GITHUB_WORKSPACE\dbus-1.13.6

- name: "Build capicxx-core-runtime"
run: |
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-core-runtime"
# run: |
# 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"
run: |
cmake -B build-dbus-runtime -D GTEST_ROOT=${{ runner.workspace }}\capicxx-dbus-runtime\googletest -D CMAKE_PREFIX_PATH=${{ runner.workspace }}\install -D CMAKE_INSTALL_PREFIX=${{ runner.workspace }}\install
cmake --build build-dbus-runtime --target build_tests install
# - name: "Build capicxx-dbus-runtime"
# run: |
# cmake -B build-dbus-runtime -D GTEST_ROOT=${{ runner.workspace }}\capicxx-dbus-runtime\googletest -D CMAKE_PREFIX_PATH=${{ runner.workspace }}\install -D CMAKE_INSTALL_PREFIX=${{ runner.workspace }}\install
# cmake --build build-dbus-runtime --target build_tests install

0 comments on commit 567a804

Please sign in to comment.