From 4fbd678074856d69bb7c31d1958da050bd8510ca Mon Sep 17 00:00:00 2001 From: Whitney Armstrong <warmstrong@anl.gov> Date: Thu, 15 Aug 2019 16:24:43 -0500 Subject: [PATCH] Added dummy test modified: .gitlab-ci.yml new file: tests/elastic_test.sh --- .gitlab-ci.yml | 14 +++++++------- tests/elastic_test.sh | 5 +++++ 2 files changed, 12 insertions(+), 7 deletions(-) create mode 100644 tests/elastic_test.sh diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f0d7ce1..3c5fa71 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,11 +1,9 @@ image: eicweb.phy.anl.gov:4567/whit/image_recipes/root_base:latest -#docker pull eicweb.phy.anl.gov:4567/whit/image_recipes/ubuntu_base:latest - stages: - build - - phase2 - + - build_sing_img + - data_tests hcana_docker: stage: build @@ -15,11 +13,10 @@ hcana_docker: - docker login eicweb.phy.anl.gov -u whit -p ${CI_IMAGE_BUILD_PAT} - cd containers/docker && make release - hcana_singularity: tags: - singularity - stage: phase2 + stage: build_sing_img dependencies: - hcana_docker script: @@ -35,4 +32,7 @@ hcana_singularity: - build/Singularity.hcana.simg - build/Singularity.hcana - +elastic_tests: + stage: data_tests + script: + - bash tests/elastic_test.sh diff --git a/tests/elastic_test.sh b/tests/elastic_test.sh new file mode 100644 index 0000000..e905686 --- /dev/null +++ b/tests/elastic_test.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +echo "This is the elastic testing..." +echo " " +echo "There are currently 0 tests to run!" -- GitLab