forked from OpenDDS/OpenDDS
-
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.
- Fixed using dll instead of lib files when CMake has to build ACE/TAO. - Fixed static not linking - Added static windows build to GHA that builds ACE/TAO - CTest should now output logs on failures in GHA
- Loading branch information
1 parent
410c7a4
commit 5d40bb4
Showing
4 changed files
with
72 additions
and
15 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 |
---|---|---|
|
@@ -63,6 +63,7 @@ concurrency: | |
env: | ||
TRIGGERING_COMMIT: ${{ github.event.pull_request.head.sha || github.sha }} | ||
VCPKG_INSTALLED_DIR: ${{ github.workspace }}\vcpkg\installed | ||
CTEST_OUTPUT_ON_FAILURE: ON | ||
|
||
jobs: | ||
|
||
|
@@ -12895,3 +12896,50 @@ jobs: | |
run: | | ||
cd OpenDDS\build | ||
ctest -C Debug | ||
build_cmake_w22_stat: | ||
|
||
runs-on: windows-2022 | ||
|
||
steps: | ||
- name: Checkout OpenDDS | ||
uses: actions/checkout@v3 | ||
with: | ||
path: OpenDDS | ||
submodules: true | ||
- name: Checkout MPC | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: DOCGroup/MPC | ||
path: MPC | ||
- name: Checkout ACE_TAO | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: DOCGroup/ACE_TAO | ||
ref: ace6tao2 | ||
path: OpenDDS/ACE_TAO | ||
- name: set up msvc env | ||
uses: ilammy/msvc-dev-cmd@v1 | ||
- name: Configure | ||
shell: cmd | ||
run: | | ||
cd OpenDDS | ||
cmake -B build^ | ||
-DCMAKE_UNITY_BUILD=TRUE^ | ||
-DBUILD_SHARED_LIBS=FALSE^ | ||
-DCMAKE_BUILD_TYPE=Debug^ | ||
-DOPENDDS_ACE=${{ github.workspace }}\OpenDDS\ACE_TAO\ACE^ | ||
-DOPENDDS_MPC=${{ github.workspace }}\MPC^ | ||
-DOPENDDS_BUILD_TESTS=TRUE^ | ||
-DOPENDDS_CMAKE_VERBOSE=all | ||
- uses: ammaraskar/[email protected] | ||
- name: Build | ||
shell: cmd | ||
run: | | ||
cd OpenDDS | ||
cmake --build build | ||
- name: Run Tests | ||
shell: cmd | ||
run: | | ||
cd OpenDDS\build | ||
ctest -C Debug |
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
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
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