Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.admin
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
bob
bob.admin
Commits
27a2bec7
Commit
27a2bec7
authored
8 years ago
by
Amir MOHAMMADI
Browse files
Options
Downloads
Patches
Plain Diff
Update update_feedstock.py - use the user id of the person who started the build
parent
f56a8b02
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gitlab/update_feedstock.py
+4
-1
4 additions, 1 deletion
gitlab/update_feedstock.py
with
4 additions
and
1 deletion
gitlab/update_feedstock.py
+
4
−
1
View file @
27a2bec7
...
@@ -184,7 +184,10 @@ def main(package, direct_push=False):
...
@@ -184,7 +184,10 @@ def main(package, direct_push=False):
[
'
git
'
,
'
add
'
,
'
-A
'
])
[
'
git
'
,
'
add
'
,
'
-A
'
])
try
:
try
:
run_commands
([
'
git
'
,
'
commit
'
,
'
-am
'
,
run_commands
([
'
git
'
,
'
commit
'
,
'
-am
'
,
'
Update to version {}
'
.
format
(
stable_version
)])
'
Update to version {}
'
.
format
(
stable_version
),
'
--author
'
,
'
{} <{}>
'
.
format
(
os
.
environ
.
get
(
'
GITLAB_USER_ID
'
),
os
.
environ
.
get
(
'
GITLAB_USER_EMAIL
'
))])
except
ValueError
:
except
ValueError
:
print
(
'
Feedstock is already uptodate, skipping.
'
)
print
(
'
Feedstock is already uptodate, skipping.
'
)
return
return
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment