From 7ed28d42bbeb379acb241d8c483878a2be49004b Mon Sep 17 00:00:00 2001 From: era Date: Sun, 19 Jan 2025 20:37:39 +0330 Subject: [PATCH] fix parallel stuff --- .woodpecker/ci.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.woodpecker/ci.yaml b/.woodpecker/ci.yaml index 89618e38..f1dac411 100644 --- a/.woodpecker/ci.yaml +++ b/.woodpecker/ci.yaml @@ -15,30 +15,31 @@ steps: - cp -r -v $CI_REPO_NAME build_and_test_linux - cp -r -v $CI_REPO_NAME spinoff_test_linux - cp -r -v $CI_REPO_NAME feature_set_copy_test_linux + - cd $CI_REPO_NAME - name: check-linux image: codeberg.org/3ra/ballistica-dev:latest commands: - - cd check_linux + - cd ../check_linux - BA_PCOMMANDBATCH_BUILD_REQUIRE=1 make check depends_on: [parallel-prepare] - name: build-and-test-linux image: codeberg.org/3ra/ballistica-dev:latest commands: - - cd build_and_test_linux + - cd ../build_and_test_linux - make cmake-server-build - BA_PCOMMANDBATCH_BUILD_REQUIRE=1 BA_APP_RUN_ENABLE_BUILDS=1 BA_APP_RUN_BUILD_HEADLESS=1 make test depends_on: [parallel-prepare] - name: spinoff-test-linux image: codeberg.org/3ra/ballistica-dev:latest commands: - - cd spinoff_test_linux + - cd ../spinoff_test_linux - make spinoff-test-core - make spinoff-test-base depends_on: [parallel-prepare] - name: feature-set-copy-test-linux image: codeberg.org/3ra/ballistica-dev:latest commands: - - cd feature_set_copy_test_linux + - cd ../feature_set_copy_test_linux - tools/spinoff fset-copy template_fs poo - make update - make cmake-modular-server-build