12 lines
322 B
Bash
12 lines
322 B
Bash
|
|
function github_status {
|
|
gcli status create mitx mitx $GIT_COMMIT \
|
|
--params=$1 \
|
|
target_url:$BUILD_URL \
|
|
description:"Build #$BUILD_NUMBER is running" \
|
|
-f csv
|
|
}
|
|
|
|
function github_mark_failed_on_exit {
|
|
trap '[ $? == "0" ] || github_status state:failed' EXIT
|
|
} |