Skip to content

Commit

Permalink
Update pipeline.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien-Ben committed Nov 16, 2023
1 parent acf1997 commit 46cbf2f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,10 +214,12 @@ def main() -> int:
# Handle dev config
config: DevConfig = load_config()
config.gh_run_id = args.tag
# TODO fix usage of 'ensure skip' and 'ensure is run', is it useful ? Do we need to explicitly use "ubi" tag everywhere as in the old pipeline ?

# Must explicitly set the --release flag to run these tasks
config.ensure_skip_tag("release")
if args.release:
config.ensure_tag_is_run("release")
#config.ensure_skip_tag("release")
#if args.release:
# config.ensure_tag_is_run("release")

if args.arch:
arch_set = set(args.arch)
Expand Down

0 comments on commit 46cbf2f

Please sign in to comment.