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 .