From 8afb02d454c562a348d63d14b838c5e4321f4aab Mon Sep 17 00:00:00 2001 From: Alexandra Date: Thu, 24 Oct 2024 14:00:14 +0000 Subject: [PATCH] change cmake_opts Signed-off-by: Alexandra --- .gitlab-ci.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 010f5f668..be081b3b2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -57,8 +57,6 @@ build:source: needs: ["prepare:docker"] image: ${DOCKER_IMAGE_DEV}:${DOCKER_TAG} script: - # Check if the configuration file exists and source it if it does - - if [ -f build_options.env ]; then source build_options.env; fi - cmake -S . -B build ${CMAKE_OPTS} ${CMAKE_EXTRA_OPTS} - cmake --build build ${CMAKE_BUILD_OPTS} artifacts: @@ -216,7 +214,7 @@ pkg:docker:minimal: --target ${TARGET} --build-arg ARCH=${ARCH} --build-arg TRIPLET=${TRIPLET} - --build-arg CMAKE_OPTS="${CMAKE_OPTS} ${CMAKE_EXTRA_OPTS} -DMINIMAL_BUILD=ON" + --build-arg CMAKE_OPTS="-DWITH_NODE_SOCKET=ON -DWITH_NODE_SIGNAL=ON ${CMAKE_EXTRA_OPTS}" --platform ${PLATFORM} --file ${DOCKER_FILE} --tag ${DOCKER_IMAGE}:${DOCKER_TAG}-${ARCH}-minimal .