summaryrefslogtreecommitdiff
path: root/scripts/pipeline.yml
blob: 8725f22eabc91f81d37f3ecdce270e15d07bc307 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
jobs:
- name: build
  plan:
  - aggregate:
    - get: ybd
    - get: definitions
  - task: run-ybd
    privileged: true
    config:
      platform: linux
      image: "docker:///devcurmudgeon/foo"
      inputs:
      - name: ybd
      - name: definitions
      run:
        path: python
        args: ['ybd/ybd.py', 'build-essential', 'x86_64']

resources:
- name: ybd
  type: git
  source:
    uri: https://gitlab.com/baserock/ybd.git
    branch: master
- name: definitions
  type: git
  source:
    uri: git://git.baserock.org/baserock/baserock/definitions.git
    branch: master