From d5a56f710c58da8c930ebd25ab57b2d481546dbf Mon Sep 17 00:00:00 2001 From: Michael <4115205+MelamudMichael@users.noreply.github.com> Date: Sun, 10 Mar 2024 18:06:36 +0200 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9868e18..9aae629 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,9 +33,8 @@ jobs: - name: Create up-cpp Conan package shell: bash run: | - git clone https://github.com/eclipse-uprotocol/up-cpp.git + git clone https://github.com/MelamudMichael/up-cpp.git cd up-cpp - git clone -b uprotocol-core-api-1.5.6 https://github.com/eclipse-uprotocol/up-core-api.git git submodule update --init --recursive conan create . --build=missing @@ -50,18 +49,18 @@ jobs: - name: Create up-client-zenoh-cpp Conan package shell: bash run: | - git clone https://github.com/eclipse-uprotocol/up-client-zenoh-cpp.git + git clone https://github.com/MelamudMichael/up-client-zenoh-cpp.git cd up-client-zenoh-cpp - conan create . --build=missing + conan create . -o build_unbundled=True -o zenoh_package=False - name: Build up-zenoh-example-cpp shell: bash run: | - mkdir build_samples - cd build_samples - conan install ../ - cmake ../ -DCMAKE_TOOLCHAIN_FILE=generators/conan_toolchain.cmake -DCMAKE_BUILD_TYPE=Release - cmake --build . + mkdir build + cd build + conan install .. + cmake -S .. -DCMAKE_TOOLCHAIN_FILE=conan_toolchain.cmake -DCMAKE_BUILD_TYPE=Release + cmake --build . # NOTE: In GitHub repository settings, the "Require status checks to pass