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
Showing
3 changed files
with
58 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 c3i.conf > foo.md | ||
|
||
uploadstatus: buildstatus | ||
./node_modules/md2gslides/bin/md2gslides.js foo.md \ | ||
-t "C3I Status" \ | ||
-e -a 1sxvqkxvcXhQkoAzsY_Pe-FNHPBIMC9RqPlV0ODc5zD0 |
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=c3i/references.md | ||
|
||
; REQUIRED. The JIRA project to report on | ||
project=C3I | ||
|
||
; 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=acorvin | ||
|
||
; 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=C3I-9,C3I-10,C3I-11,C3I-12,C3I-13 | ||
|
||
|
||
|
||
; This is a $SCENARIO block | ||
[statusslides] | ||
; REQUIRED. The title for your report | ||
title=C3I 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,5 @@ | ||
# C3I Resources | ||
|
||
- [C3I Design Document](https://docs.google.com/document/d/10FwaF2tSLEx8rjumHWllGPza3F4lo43OKIrSY5XEBy4) | ||
- [C3I Status Dashboard](https://docs.engineering.redhat.com/display/PDT/C3I+Tracking) | ||
- [C3I JIRA Project](https://projects.engineering.redhat.com/projects/C3I/) |