Skip to content
Snippets Groups Projects
Commit 892078fb authored by Charlotte Hausman's avatar Charlotte Hausman
Browse files

test a thing again

parent be69aea9
No related branches found
No related tags found
2 merge requests!1605Merge 2.8.2.3 work to main,!1492tweak the pipeline
Pipeline #12406 passed
......@@ -17,6 +17,7 @@
# along with Workspaces. If not, see <https://www.gnu.org/licenses/>.
import argparse
import glob
import importlib.metadata
import logging
import os
import sys
......@@ -138,6 +139,11 @@ def make_arg_parser() -> argparse.ArgumentParser:
description="Launch CARTA via Workspaces",
formatter_class=argparse.RawTextHelpFormatter,
)
parser.add_argument(
"--version",
action="version",
version=importlib.metadata.version("carta-envoy"),
)
parser.add_argument(
"-d",
"--directory",
......
......@@ -21,25 +21,25 @@
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH || $CI_COMMIT_BRANCH =~ /(^[0-9]\.[0-9]|^[0-9]\.[0-9]\.[0-9])-DEVELOPMENT/'
variables:
DEPLOY_ENV: "dev"
PEX_SOURCE: ${PIP_NAME}==2.8.2.1rc1
PEX_SOURCE: ${PIP_NAME}==2.8.2rc1
changes:
- apps/cli/executables/pexable/${PACKAGE_NAME}/**/*
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
variables:
DEPLOY_ENV: "dev"
PEX_SOURCE: ${PIP_NAME}==2.8.2.1rc1
PEX_SOURCE: ${PIP_NAME}==2.8.2rc1
changes:
- apps/cli/executables/pexable/${PACKAGE_NAME}/**/*
- if: '$CI_COMMIT_TAG =~ /^end-of-sprint-[0-9]+/'
variables:
DEPLOY_ENV: "test"
PEX_SOURCE: ${PIP_NAME}==2.8.2.1rc1
PEX_SOURCE: ${PIP_NAME}==2.8.2rc1
changes:
- apps/cli/executables/pexable/${PACKAGE_NAME}/**/*
- if: '$CI_COMMIT_TAG =~ /[0-9]+\.[0-9]+\.[0-9]+-rc[0-9]+/'
variables:
DEPLOY_ENV: "test"
PEX_SOURCE: ${PIP_NAME}==$CI_COMMIT_TAG
PEX_SOURCE: ${PIP_NAME}==2.8.2rc1
changes:
- apps/cli/executables/pexable/${PACKAGE_NAME}/**/*
- if: '$CI_COMMIT_TAG =~ /[0-9]+\.[0-9]+\.[0-9]+$/'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment