Skip to content
Snippets Groups Projects
Commit a440c2f3 authored by Raghunandan Netrapalli Madhusudhan's avatar Raghunandan Netrapalli Madhusudhan Committed by Raghunandan Netrapalli Madhusudhan
Browse files

Use gtgen simulator 11.3.0

parent f91f9279
No related branches found
No related tags found
1 merge request!279Draft: Parameterize integration urls
......@@ -14,9 +14,9 @@ pipeline {
parameters {
booleanParam(name: 'BUILD_DOCKER_IMAGE', defaultValue: false, description: 'Force docker image (re-)build')
string(name: 'OPTESTRUNNER_URL', defaultValue: 'https://download.eclipse.org/openpass/snapshots/opTestrunner/pytest_optestrunner-1.1-py3-none-any.whl', description: 'URL to download opTestrunner binaries')
string(name: 'GECCO_URL', defaultValue: 'https://ci.eclipse.org/openpass/job/gecco/job/develop/lastSuccessfulBuild/artifact/artifacts/gecco.tar.gz', description: 'URL to download gecco binaries')
string(name: 'GTGEN_CLI_URL', defaultValue: 'https://ci.eclipse.org/openpass/job/GT-Gen-Simulator-PreMerge-Gate/view/tags/job/v11.2.0/lastSuccessfulBuild/artifact/artifacts/gtgen-cli_1.1.0_amd64.deb', description: 'URL to download gtgen cli binaries')
string(name: 'GTGEN_SIM_URL', defaultValue: 'https://ci.eclipse.org/openpass/job/GT-Gen-Simulator-PreMerge-Gate/view/tags/job/v11.2.0/lastSuccessfulBuild/artifact/artifacts/gtgen-simulator_11.2.0_amd64.deb', description: 'URL to download gtgen simulator binaries')
string(name: 'GECCO_URL', defaultValue: 'https://ci.eclipse.org/openpass/job/gecco/view/change-requests/job/MR-3/lastSuccessfulBuild/artifact/artifacts/gecco.tar.gz', description: 'URL to download gecco binaries')
string(name: 'GTGEN_CLI_URL', defaultValue: 'https://ci.eclipse.org/openpass/job/GT-Gen-Simulator-PreMerge-Gate/view/tags/job/v11.3.0/lastSuccessfulBuild/artifact/artifacts/gtgen-cli_1.1.0_amd64.deb', description: 'URL to download gtgen cli binaries')
string(name: 'GTGEN_SIM_URL', defaultValue: 'https://ci.eclipse.org/openpass/job/GT-Gen-Simulator-PreMerge-Gate/view/tags/job/v11.3.0/lastSuccessfulBuild/artifact/artifacts/gtgen-simulator_11.3.0_amd64.deb', description: 'URL to download gtgen simulator binaries')
}
options {
checkoutToSubdirectory('repo')
......@@ -110,7 +110,7 @@ spec:
container('openpass-build') {
sh 'bash repo/utils/ci/scripts/pull_gecco.sh'
sh 'bash repo/utils/ci/scripts/pull_optestrunner.sh'
sh 'bash repo/utils/ci/scripts/build_gtgen.sh'
sh 'bash repo/utils/ci/scripts/pull_gtgen.sh'
}
}
}
......
......@@ -24,13 +24,13 @@ OP_REPO_DIR="${OP_REPO_DIR:=$SCRIPT_DIR/../../..}"
if [[ -z "${GECCO_DIR}" ]]; then
# If not defined, set a default value
GTGEN_DIR="$SCRIPT_DIR/../../../../gtgen_repo"
GTGEN_DIR="$SCRIPT_DIR/../../../../gtgen_cli"
GECCO_DIR="$SCRIPT_DIR/../../../../gecco"
echo "WARN: GECCO_DIR variable is not set. Setting it to:
GECCO_DIR is ${GECCO_DIR}"
fi
GTGEN_CLI_PATH="$GTGEN_DIR/gt-gen-simulator-v11.1.0/bazel-out/k8-opt/bin/Cli"
GTGEN_CLI_PATH="$GTGEN_DIR"
venv_python_executable="${OP_REPO_DIR}/.env/bin/python3"
commonFolder=$GECCO_DIR/gecco/examples/Common
......
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