From 4ca17ee3297459cd845696b4bdaf21b0346a9b0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joan=20Vallv=C3=A9=20Navarro?= <jvallve@iri.upc.edu> Date: Mon, 9 May 2022 12:33:37 +0200 Subject: [PATCH] [skip ci] ci: printing variables --- .gitlab-ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2501eb456..f75a604f9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,6 +6,12 @@ stages: - csm_falko ############ YAML ANCHORS ############ +.print_variables_template: &print_variables_definition + # Print variables + - echo $CI_COMMIT_BRANCH + - echo $WOLF_LASER_BRANCH + - echo $LASERSCANUTILS_BRANCH + .preliminaries_template: &preliminaries_definition ## Install ssh-agent if not already installed, it is required by Docker. ## (change apt-get to yum if you use an RPM-based image) @@ -153,6 +159,7 @@ license_headers: paths: - ci_deps/wolf/ before_script: + - *print_variables_definition - *preliminaries_definition - *install_wolf_definition script: @@ -170,6 +177,7 @@ build_and_test_none:bionic: paths: - ci_deps/laser_scan_utils/ before_script: + - *print_variables_definition - *preliminaries_definition - *install_wolf_definition - *install_laserscanutils_definition @@ -190,6 +198,7 @@ build_and_test_csm:bionic: paths: - ci_deps/csm/ before_script: + - *print_variables_definition - *preliminaries_definition - *install_wolf_definition - *install_csm_definition @@ -211,6 +220,7 @@ build_and_test_falko:bionic: paths: - ci_deps/falkolib/ before_script: + - *print_variables_definition - *preliminaries_definition - *install_wolf_definition - *install_falko_definition @@ -235,6 +245,7 @@ build_and_test_csm_falko:bionic: paths: - ci_deps/falkolib/ before_script: + - *print_variables_definition - *preliminaries_definition - *install_wolf_definition - *install_falko_definition @@ -255,6 +266,7 @@ build_and_test_none:focal: paths: - ci_deps/laser_scan_utils/ before_script: + - *print_variables_definition - *preliminaries_definition - *install_wolf_definition - *install_laserscanutils_definition @@ -275,6 +287,7 @@ build_and_test_csm:focal: paths: - ci_deps/csm/ before_script: + - *print_variables_definition - *preliminaries_definition - *install_wolf_definition - *install_csm_definition @@ -296,6 +309,7 @@ build_and_test_falko:focal: paths: - ci_deps/falkolib/ before_script: + - *print_variables_definition - *preliminaries_definition - *install_wolf_definition - *install_falko_definition @@ -320,6 +334,7 @@ build_and_test_csm_falko:focal: paths: - ci_deps/falkolib/ before_script: + - *print_variables_definition - *preliminaries_definition - *install_wolf_definition - *install_falko_definition -- GitLab