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
Closes #126.
31 lines
663 B
YAML
31 lines
663 B
YAML
# yaml-language-server: $schema=https://raw.githubusercontent.com/cappyzawa/concourse-pipeline-jsonschema/master/concourse_jsonschema.json#/definitions/TaskConfig
|
|
---
|
|
platform: linux
|
|
|
|
image_resource:
|
|
name: dtmt-ci-base-linux
|
|
type: registry-image
|
|
source:
|
|
repository: registry.local:5000/dtmt-ci-base-linux
|
|
tag: latest
|
|
|
|
inputs:
|
|
- name: repo
|
|
|
|
caches:
|
|
- path: repo/target
|
|
- path: /usr/local/cargo/registry
|
|
|
|
params:
|
|
CI: "true"
|
|
GITEA_API_KEY: ((gitea_api_key))
|
|
REF: ((ref))
|
|
|
|
run:
|
|
path: .ci/util/run.sh
|
|
dir: repo
|
|
args:
|
|
- .ci/tasks/clippy.sh
|
|
- lint/clippy
|
|
- "Checking for common mistakes and opportunities for code improvement"
|
|
|