Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 7 additions & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ tasks:
- task: test:acceptance:chat-message-only-simplest-possible
- task: test:acceptance:chat-message-only-file
- task: test:acceptance:default-log
- task: test:acceptance:gh-app-status

test:acceptance:chat-only-summary:
desc: Run a pipeline job to test default chat
Expand Down Expand Up @@ -218,6 +219,12 @@ tasks:
- task: trigger-job
vars: {JOB: default-log}

test:acceptance:gh-app-status:
desc: Run a pipeline job to test auth via a GitHub App
cmds:
- task: trigger-job
vars: {JOB: gh-app-status}

browser:
desc: "Show code coverage in browser (usage: task test:<subtarget> browser)"
cmds:
Expand Down
6 changes: 4 additions & 2 deletions pipelines/cogito-acceptance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ resource_types:
check_every: 24h
source:
repository: pix4d/cogito
tag: ((cogito-tag))
tag: "((cogito-tag))"

###########################################################

Expand Down Expand Up @@ -75,13 +75,15 @@ resources:
source:
uri: https://github.com/((github-owner))/((repo-name)).git
branch: ((target-branch))
disable_ci_skip: true # This is required on Pix4D CI only

- name: cogito-repo.git
type: git
check_every: 24h
source:
uri: https://github.com/Pix4D/cogito.git
branch: ((cogito-branch))
disable_ci_skip: true # This is required on Pix4D CI only

###########################################################

Expand Down Expand Up @@ -176,7 +178,7 @@ jobs:
params:
state: success

- name: cogito-gh-app-status
- name: gh-app-status
max_in_flight: 1
plan:
- get: target-repo.git
Expand Down
Loading