Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.devtools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
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
Show more breadcrumbs
bob
bob.devtools
Commits
d078cd6b
Commit
d078cd6b
authored
6 years ago
by
André Anjos
Browse files
Options
Downloads
Patches
Plain Diff
[scripts][ci] Use build() for nightlies instead of rebuild() to force recompilation of all packages
parent
552fea3c
No related branches found
No related tags found
No related merge requests found
Pipeline
#27922
passed
6 years ago
Stage: build
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bob/devtools/scripts/ci.py
+3
-3
3 additions, 3 deletions
bob/devtools/scripts/ci.py
with
3 additions
and
3 deletions
bob/devtools/scripts/ci.py
+
3
−
3
View file @
d078cd6b
...
@@ -481,7 +481,7 @@ def nightlies(ctx, order, dry_run):
...
@@ -481,7 +481,7 @@ def nightlies(ctx, order, dry_run):
token
=
os
.
environ
[
'
CI_JOB_TOKEN
'
]
token
=
os
.
environ
[
'
CI_JOB_TOKEN
'
]
import
git
import
git
from
.
re
build
import
re
build
from
.build
import
build
from
urllib.request
import
urlopen
from
urllib.request
import
urlopen
# loaded all recipes, now cycle through them implementing what is described
# loaded all recipes, now cycle through them implementing what is described
...
@@ -509,12 +509,12 @@ def nightlies(ctx, order, dry_run):
...
@@ -509,12 +509,12 @@ def nightlies(ctx, order, dry_run):
private
=
urlopen
(
'
https://gitlab.idiap.ch/%s
'
%
package
).
getcode
()
!=
200
private
=
urlopen
(
'
https://gitlab.idiap.ch/%s
'
%
package
).
getcode
()
!=
200
stable
=
'
STABLE
'
in
os
.
environ
stable
=
'
STABLE
'
in
os
.
environ
ctx
.
invoke
(
re
build
,
ctx
.
invoke
(
build
,
recipe_dir
=
[
os
.
path
.
join
(
clone_to
,
'
conda
'
)],
recipe_dir
=
[
os
.
path
.
join
(
clone_to
,
'
conda
'
)],
python
=
os
.
environ
[
'
PYTHON_VERSION
'
],
#python version
python
=
os
.
environ
[
'
PYTHON_VERSION
'
],
#python version
condarc
=
None
,
#custom build configuration
condarc
=
None
,
#custom build configuration
config
=
CONDA_BUILD_CONFIG
,
config
=
CONDA_BUILD_CONFIG
,
#
no_test=False,
no_test
=
False
,
append_file
=
CONDA_RECIPE_APPEND
,
append_file
=
CONDA_RECIPE_APPEND
,
server
=
SERVER
,
server
=
SERVER
,
group
=
group
,
group
=
group
,
...
...
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