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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
jobs:
- name: truffle-stable
plan:
- get: ci
- get: nokogiri
trigger: true
- config:
image_resource:
source:
repository: flavorjones/nokogiri-test
tag: truffle-stable
type: registry-image
inputs:
- name: ci
- name: nokogiri
platform: linux
run:
path: ci/concourse/tasks/rake-test/run.sh
task: rake-test
public: true
- name: truffle-nightly
plan:
- get: ci
- get: nokogiri
trigger: true
- config:
image_resource:
source:
repository: flavorjones/nokogiri-test
tag: truffle-nightly
type: registry-image
inputs:
- name: ci
- name: nokogiri
platform: linux
run:
path: ci/concourse/tasks/rake-test/run.sh
task: rake-test
public: true
- name: truffle-pr-stable
plan:
- get: ci
- get: nokogiri-pr
trigger: true
version: every
- config:
image_resource:
source:
repository: flavorjones/nokogiri-test
tag: truffle-stable
type: registry-image
inputs:
- name: ci
- name: nokogiri-pr
path: nokogiri
platform: linux
run:
path: ci/concourse/tasks/rake-test/run.sh
task: rake-test
public: true
- name: truffle-pr-nightly
plan:
- get: ci
- get: nokogiri-pr
trigger: true
version: every
- config:
image_resource:
source:
repository: flavorjones/nokogiri-test
tag: truffle-nightly
type: registry-image
inputs:
- name: ci
- name: nokogiri-pr
path: nokogiri
platform: linux
run:
path: ci/concourse/tasks/rake-test/run.sh
task: rake-test
public: true
resource_types:
- name: pull-request
source:
repository: teliaoss/github-pr-resource
type: registry-image
resources:
- icon: cog
name: ci
source:
branch: master
disable_ci_skip: true
uri: https://github.com/sparklemotion/nokogiri/
type: git
- check_every: 5m
icon: github
name: nokogiri
source:
branch: master
ignore_paths:
- '*.md'
- concourse/**
- suppressions/**
- .github/**
- Vagrantfile
uri: https://github.com/sparklemotion/nokogiri/
type: git
webhook_token: ((nokogiri-master-webhook-token))
- check_every: 15m
icon: github
name: nokogiri-pr
source:
access_token: ((github-repo-status-access-token))
ignore_drafts: true
ignore_paths:
- '*.md'
- concourse/
- suppressions/
- .github/
- Vagrantfile
repository: sparklemotion/nokogiri
type: pull-request
webhook_token: ((nokogiri-pr-webhook-token))
|