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
f8a72e5c
Commit
f8a72e5c
authored
May 13, 2013
by
Calen Pennington
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1932 from edx/feature/e0d/flexible-base.sh
flexible org repos parsing tested locally
parents
5e0afc63
9ee246e4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
1 deletions
+14
-1
jenkins/base.sh
+14
-1
No files found.
jenkins/base.sh
View file @
f8a72e5c
##
## requires >= 1.3.0 of the Jenkins git plugin
##
function
github_status
{
gcli status create edx mitx
$GIT_COMMIT
\
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"
\
...
...
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