Skip to content

Commit

Permalink
fix(ci): align workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
GoetzGoerisch committed Nov 9, 2024
1 parent b297556 commit b399774
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ClangRelWithDebInfoAsan.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: Clang RelWithDebInfoAsan
name: Build & Test (clang)

on:
push:
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
# Github Actions machines are (as of this writing) 3.28
run: |
cmake "$GITHUB_WORKSPACE" \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_BUILD_TYPE="$BUILD_TYPE" \
-DENABLE_TESTING=ON \
-DBUILD_SHARED_LIBS=ON \
-DENABLE_ASAN=ON ..
Expand All @@ -73,7 +73,7 @@ jobs:
working-directory: ${{ runner.temp }}/build
# Execute the build. You can specify a specific target
# with "--target <NAME>"
run: cmake --build . --config "$BUILD_TYPE"
run: sudo cmake --build . --config "$BUILD_TYPE"

- name: Test
shell: bash
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/GccDebugMemcheck.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: GccDebugMemcheck
name: Build Debug & Memcheck

on:
push:
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
shell: bash
working-directory: ./openRoot/build
run: |
cmake -DCMAKE_BUILD_TYPE=Debug \
cmake -DCMAKE_BUILD_TYPE="$BUILD_TYPE" \
-DUA_NAMESPACE_ZERO=FULL \
-DBUILD_SHARED_LIBS=ON \
-DUA_ENABLE_SUBSCRIPTIONS_EVENTS=ON \
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
# Github Actions machines are (as of this writing) 3.28
run: |
cmake "$GITHUB_WORKSPACE" \
-DCMAKE_BUILD_TYPE=Debug \
-DCMAKE_BUILD_TYPE="$BUILD_TYPE" \
-DENABLE_CONAN=OFF \
-DENABLE_TESTING=ON \
-DBUILD_SHARED_LIBS=ON \
Expand All @@ -109,7 +109,7 @@ jobs:
working-directory: ${{ runner.temp }}/build
# Execute the build. You can specify a specific target
# with "--target <NAME>"
run: cmake --build . --config "$BUILD_TYPE"
run: sudo cmake --build . --config "$BUILD_TYPE"


- name: Test
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/GccIntegrationTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,14 @@ jobs:
path: ./openRoot

- name: Create Build Environment for open62541
shell: bash
run: cmake -E make_directory ./openRoot/build

- name: Configure open
shell: bash
working-directory: ./openRoot/build
run: |
cmake -DCMAKE_BUILD_TYPE=Debug \
cmake -DCMAKE_BUILD_TYPE="$BUILD_TYPE" \
-DUA_NAMESPACE_ZERO=FULL \
-DBUILD_SHARED_LIBS=ON \
-DUA_ENABLE_SUBSCRIPTIONS_EVENTS=ON \
Expand Down Expand Up @@ -91,7 +92,7 @@ jobs:
# Github Actions machines are (as of this writing) 3.28
run: |
cmake "$GITHUB_WORKSPACE" \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_BUILD_TYPE=$BUILD_TYPE \
-DENABLE_CONAN=OFF \
-DENABLE_TESTING=ON \
-DBUILD_SHARED_LIBS=ON \
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: WindowsBuildOnly
name: Windows Build Only

on:
push:
Expand Down Expand Up @@ -34,6 +34,7 @@ jobs:

- uses: ilammy/msvc-dev-cmd@v1
- name: Build nodesetLoader
shell: bash
run: |
cd ./nodesetLoader && \
cmake \
Expand Down

0 comments on commit b399774

Please sign in to comment.