feat(ci): Add basic pipeline

This commit is contained in:
Lucas Schwiderski 2023-03-23 19:17:07 +01:00
parent 8b70eba79e
commit 4929b3f201
Signed by: lucas
GPG key ID: AA12679AAA6DF4D8

28
.ci/pipelines/check.yml Normal file
View file

@ -0,0 +1,28 @@
---
# The actual CI pipeline that is run per branch
resources:
- name: repo
type: git
source:
uri: https://git.sclu1034.dev/bitsquid_dt/dtmt
branch: ((branch))
jobs:
- name: build-msvc
plan:
- get: repo
trigger: true
- task: build
file: repo/.ci/tasks/build.yml
vars:
target: msvc
- name: build-linux
plan:
- get: repo
trigger: true
- task: build
file: repo/.ci/tasks/build.yml
vars:
target: linux