From ac657267a30c3a6c8043ef1f74123b0dfa9d9d88 Mon Sep 17 00:00:00 2001 From: Erick Hitter <git-contrib@ethitter.com> Date: Mon, 27 May 2019 20:16:09 -0700 Subject: [PATCH] Add a bit more output for debugging purposes --- .gitlab-ci.yml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5c81268..17d8087 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,6 +2,9 @@ package:jessie: stage: build image: containers.ethitter.com:443/docker/images/debian:jessie before_script: + - echo $NGINX_VERSION_JESSIE + - echo $NGINX_BINARY_JESSIE + # Relies on latest binary build artifact from https://git.ethitter.com/debian/nginx-build. - curl -o nginx-build "${NGINX_BINARY_JESSIE}" - chmod +x nginx-build @@ -12,12 +15,15 @@ package:jessie: artifacts: paths: - nginx_${NGINX_VERSION_JESSIE}* - - nginx-dbgsym_${NGINX_VERSION_JESSIE}* + - nginx-dbgsym_* package:stretch: stage: build image: containers.ethitter.com:443/docker/images/debian:stretch before_script: + - echo $NGINX_VERSION_STRETCH + - echo $NGINX_BINARY_STRETCH + # Relies on latest binary build artifact from https://git.ethitter.com/debian/nginx-build. - curl -o nginx-build "${NGINX_BINARY_STRETCH}" - chmod +x nginx-build @@ -28,12 +34,15 @@ package:stretch: artifacts: paths: - nginx_${NGINX_VERSION_STRETCH}* - - nginx-dbgsym_${NGINX_VERSION_STRETCH}* + - nginx-dbgsym_* package:buster: stage: build image: containers.ethitter.com:443/docker/images/debian:buster before_script: + - echo $NGINX_VERSION_BUSTER + - echo $NGINX_BINARY_BUSTER + # Relies on latest binary build artifact from https://git.ethitter.com/debian/nginx-build. - curl -o nginx-build "${NGINX_BINARY_BUSTER}" - chmod +x nginx-build @@ -44,4 +53,4 @@ package:buster: artifacts: paths: - nginx_${NGINX_VERSION_BUSTER}* - - nginx-dbgsym_${NGINX_VERSION_BUSTER}* + - nginx-dbgsym_* -- GitLab