This commit is contained in:
Erris
2026-03-10 01:56:00 +01:00

View File

@@ -23,16 +23,23 @@ jobs:
timeout: 14400 timeout: 14400
- name: Compile for Linux - name: Compile for Linux
steps: steps:
- type: CheckoutStep
name: Checkout
cloneCredential:
type: DefaultCredential
withLfs: false
withSubmodules: false
condition: SUCCESSFUL
optional: false
- type: CommandStep - type: CommandStep
name: Compile for Linux name: Compile for Linux
runInContainer: true runInContainer: true
image: silkeh/clang image: erriss/erris-build_tools:V0.1
interpreter: interpreter:
type: DefaultInterpreter type: DefaultInterpreter
commands: | commands: |
conan install . --output-folder=build --build=missing -s build_type=Debug . .envrc
cmake -S . -G Ninja -B build -DCMAKE_BUILD_TYPE=Debug -DCMAKE_TOOLCHAIN_FILE=build/conan_toolchain.cmake just c
cmake --build build --config
useTTY: true useTTY: true
condition: SUCCESSFUL condition: SUCCESSFUL
optional: false optional: false