forked from zhangjing1/finishline
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
852ee7a
commit c479477
Showing
3 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
install: | ||
test -d ./node_modules/md2gslides/bin/ || npm install md2gslides | ||
test -d venv || virtualenv venv | ||
venv/bin/pip install -Ur requirements.txt | ||
|
||
buildstatus: install | ||
venv/bin/python finishline \ | ||
--scenario statusslides \ | ||
--config cpcollab.conf > foo.md | ||
|
||
uploadstatus: buildstatus | ||
./node_modules/md2gslides/bin/md2gslides.js foo.md \ | ||
-t "DevOps Cross-pillar Collaboration Status" \ | ||
-e -a 15bXAWuHOQiy4nTfTvztfVgXrO6vHL9XuVuP_4YKjEBo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
; The core set of options to Finishline | ||
[options] | ||
; REQUIRED. The URL to the JIRA server | ||
server=https://projects.engineering.redhat.com | ||
|
||
; OPTIONAL. A path to a file to be used as references | ||
references=cpcollab/references.md | ||
|
||
; REQUIRED. The JIRA project to report on | ||
project=CPCOLLAB | ||
|
||
; OPTIONAL. Use basic auth instead of Kerberos. | ||
use_basic_auth=true | ||
|
||
; OPTIONAL, but required when use_basic_auth is true | ||
; The username to use for basic auth | ||
basic_auth_username=mikeb | ||
|
||
; OPTIONAL. Whether to show the attribution for a status update | ||
; Defaults to false. | ||
attribution=true | ||
|
||
; OPTIONAL. A comma-separated list of epics to be included in the results | ||
include_epics=CPCOLLAB-2,CPCOLLAB-3,CPCOLLAB-5,CPCOLLAB-6,CPCOLLAB-7,CPCOLLAB-8,CPCOLLAB-10,CPCOLLAB-11,CPCOLLAB-16 | ||
|
||
|
||
|
||
; This is a $SCENARIO block | ||
[statusslides] | ||
; REQUIRED. The title for your report | ||
title=DevOps Cross-pillar Collaboration Status | ||
|
||
; REQUIRED. The path to a template for output. | ||
template=threebean/slides.md | ||
|
||
; OPTIONAL. The subtitle for your report | ||
; If the value contains "{DATE}", then today's date | ||
; will be substituted in place of "{DATE}" | ||
subtitle={DATE} -- PnT DevOps |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# DevOps Cross-pillar Collaboration Resources | ||
|
||
- [CPCOLLAB JIRA Board](https://projects.engineering.redhat.com/secure/RapidBoard.jspa?projectKey=CPCOLLAB&rapidView=2380) | ||
- [DevOps Training and Demos Home](https://docs.engineering.redhat.com/display/HAT/PnT+DevOps+Training+and+Demos+Home) |