All checks were successful
lint/clippy Checking for common mistakes and opportunities for code improvement
build/msvc Build for the target platform: msvc
build/linux Build for the target platform: linux
Potentially useful when using the task for release artifact building later.
29 lines
457 B
YAML
29 lines
457 B
YAML
---
|
|
platform: linux
|
|
|
|
image_resource:
|
|
type: registry-image
|
|
source:
|
|
repository: registry.local:5000/dtmt-ci-base-((target))
|
|
tag: latest
|
|
|
|
inputs:
|
|
- name: repo
|
|
|
|
outputs:
|
|
- name: ((output))
|
|
|
|
params:
|
|
CI: true
|
|
TARGET: ((target))
|
|
GITEA_API_KEY: ((gitea_api_key))
|
|
REF: ((ref))
|
|
OUTPUT: ((output))
|
|
|
|
run:
|
|
path: .ci/util/run.sh
|
|
dir: repo
|
|
args:
|
|
- .ci/tasks/build.sh
|
|
- build/((target))
|
|
- "Build for the target platform: ((target))"
|