Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
b3e8d597
Commit
b3e8d597
authored
May 13, 2013
by
Calen Pennington
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make gcli commands flexible around org and repo name
parent
d7a6e58f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
26 deletions
+14
-26
jenkins/base.sh
+0
-25
jenkins/test.sh
+14
-1
No files found.
jenkins/base.sh
deleted
100644 → 0
View file @
d7a6e58f
##
## requires >= 1.3.0 of the Jenkins git plugin
##
function
github_status
{
if
[[
!
${
GIT_URL
}
=
~ git@github.com:
([
^/]+
)
/
([
^
\.
]
+
)
.git
]]
;
then
echo
"Cannot parse Github org or repo from URL, using defaults."
ORG
=
"edx"
REPO
=
"mitx"
else
ORG
=
${
BASH_REMATCH
[1]
}
REPO
=
${
BASH_REMATCH
[2]
}
fi
gcli status create
$ORG
$REPO
$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
}
jenkins/test.sh
View file @
b3e8d597
...
...
@@ -3,8 +3,21 @@
set
-e
set
-x
##
## requires >= 1.3.0 of the Jenkins git plugin
##
function
github_status
{
gcli status create edx edx-platform
$GIT_COMMIT
\
if
[[
!
${
GIT_URL
}
=
~ git@github.com:
([
^/]+
)
/
([
^
\.
]
+
)
.git
]]
;
then
echo
"Cannot parse Github org or repo from URL, using defaults."
ORG
=
"edx"
REPO
=
"edx-platform"
else
ORG
=
${
BASH_REMATCH
[1]
}
REPO
=
${
BASH_REMATCH
[2]
}
fi
gcli status create
$ORG
$REPO
$GIT_COMMIT
\
--params
=
$1
\
target_url:
$BUILD_URL
\
description:
"Build #
$BUILD_NUMBER
$2
"
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment