Skip to content
This repository has been archived by the owner on Nov 16, 2020. It is now read-only.

Workaround for scheduling issue in concourse #373

Merged
merged 2 commits into from
Apr 11, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions ci/pipelines/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ resources:
access_key_id: ((s3-logs-bucket-access-key))
secret_access_key: ((s3-logs-bucket-secret-key))

# Workaround for https://github.com/concourse/concourse/issues/736
- name: time-trigger
type: time
source: {interval: 24h}

- name: keyval
type: keyval

Expand Down Expand Up @@ -176,6 +181,7 @@ jobs:
build: build-context/service-manager
dockerfile: build-context/service-manager/Dockerfile
tag: build-context/tag
- put: time-trigger
- put: dispatch-pr
params: {path: dispatch, context: dispatch-e2e-images, status: success}

Expand All @@ -190,6 +196,10 @@ jobs:
version: every
- get: keyval
passed: [build-images]
- get: time-trigger
version: every
trigger: true
passed: [build-images]
- put: dispatch-pr
params: {path: dispatch, context: dispatch-e2e-openfaas, status: pending}
- task: build-cli
Expand Down Expand Up @@ -247,6 +257,10 @@ jobs:
version: every
- get: keyval
passed: [build-images]
- get: time-trigger
version: every
trigger: true
passed: [build-images]
- put: dispatch-pr
params: {path: dispatch, context: dispatch-e2e-riff, status: pending}
- task: build-cli
Expand Down