Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ci): align workflows #264

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
7 changes: 4 additions & 3 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,8 @@ 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 \
-DENABLE_DATATYPEIMPORT_TEST=ON \
Expand Down
6 changes: 4 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,8 @@ 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 \
-DENABLE_INTEGRATION_TEST=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 @@ -35,6 +35,7 @@ jobs:

- uses: ilammy/msvc-dev-cmd@v1
- name: Build nodesetLoader
shell: bash
run: |
cd ./nodesetLoader && cmake "-DCMAKE_PROJECT_TOP_LEVEL_INCLUDES=./cmake-conan/conan_provider.cmake" -DCMAKE_BUILD_TYPE=Debug `
-DUA_NAMESPACE_ZERO=FULL `
Expand Down
Loading