Edit .onedev-buildspec.yml

This commit is contained in:
erris
2026-03-10 05:50:45 +01:00
parent 88ea35ab67
commit 42090a5d47

View File

@@ -42,9 +42,14 @@ jobs:
git submodule update --init --recursive
conan install . --output-folder=. --build=missing -s build_type=${BUILD_TYPE}
cmake -S . -G Ninja -B build -DCMAKE_BUILD_TYPE=${BUILD_TYPE} -DCMAKE_TOOLCHAIN_FILE=conan_toolchain.cmake
echo ====== Building ===================================================
echo ====== Building =============================
cmake --build . --config ${BUILD_TYPE}
echo ====== ls ===================================
ls -la
echo ====== ls build =============================
ls build -la
envVars:
- name: BUILD_TYPE
@@ -58,7 +63,8 @@ jobs:
optional: false
- type: PublishArtifactStep
name: Get build artifacts
artifacts: build/editor/oe_editor build/open_engine/libopen_engine.a
sourcePath: build
artifacts: editor/oe_editor open_engine/libopen_engine.a
condition: SUCCESSFUL
optional: false
retryCondition: never