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
a0c41b97
Commit
a0c41b97
authored
6 years ago
by
André Anjos
Browse files
Options
Downloads
Patches
Plain Diff
[ci] Use click.invoke() to invoke subcommand
parent
855ef216
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#26101
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 @
a0c41b97
...
...
@@ -225,7 +225,8 @@ Examples:
'
printing to help you understand what will be done
'
)
@verbosity_option
()
@bdt.raise_on_error
def
build
(
dry_run
):
@click.pass_context
def
build
(
ctx
,
dry_run
):
"""
Builds packages
This command builds packages in the CI infrastructure. It is **not** meant
...
...
@@ -237,7 +238,7 @@ def build(dry_run):
from
..bootstrap
import
run_cmdline
from
.build
import
build
build
(
ctx
.
invoke
(
build
,
recipe_dir
=
[
os
.
path
.
join
(
os
.
path
.
realpath
(
os
.
curdir
),
'
conda
'
)],
python
=
os
.
environ
[
'
PYTHON_VERSION
'
],
#python version
condarc
=
None
,
#custom build configuration
...
...
@@ -248,7 +249,6 @@ def build(dry_run):
private
=
(
os
.
environ
[
'
CI_PROJECT_VISIBILITY
'
]
!=
'
public
'
),
stable
=
'
CI_COMMIT_TAG
'
in
os
.
environ
,
dry_run
=
dry_run
,
verbosity
=
verbosity
,
)
git_clean_build
(
run_cmdline
,
arch
)
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