From 4e59c5fff3107c00b25bbc7f654413611050a476 Mon Sep 17 00:00:00 2001 From: apldev3 Date: Wed, 12 Sep 2018 09:27:43 -0400 Subject: [PATCH] Remove old CI Runner config --- .gitlab-ci.yml | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index f60e4010..00000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,31 +0,0 @@ -# NOTE: if you are editing this, try using the lint tool to check your work before pushing: https://forge.outer.jhuapl.edu/ci/lint - -before_script: - - echo "running CI jobs for HIRS" - -stages: - - build - -gradle_build: - stage: build - script: ./gradlew build - artifacts: - when: on_failure - untracked: true - expire_in: 3 days - -rpm_build_centos6: - stage: build - script: ONLY_BUILD_EL6_RPMS=true ./package/package.centos.sh - artifacts: - paths: - - package/rpm/RPMS/ - expire_in: 3 days - -rpm_build_centos7: - stage: build - script: ONLY_BUILD_EL7_RPMS=true ./package/package.centos.sh - artifacts: - paths: - - package/rpm/RPMS/ - expire_in: 3 days