Revise Docker to Always Pull Latest HIRS project

This commit is contained in:
apldev3 2018-10-12 14:26:01 -04:00
parent e711f9df55
commit 65f9cb0af7
2 changed files with 1 additions and 4 deletions

View File

@ -33,4 +33,4 @@ cache:
install: true
script:
- docker run --rm hirs/hirs-ci:centos7 /bin/bash -c "cd /root/HIRS; git checkout ${TRAVIS_BRANCH}; ./gradlew :$SUBPROJECT:build"
- docker run --rm hirs/hirs-ci:centos7 /bin/bash -c "git clone https://github.com/nsacyber/HIRS.git /root/HIRS; cd /root/HIRS; git checkout ${TRAVIS_BRANCH}; ./gradlew :$SUBPROJECT:build"

View File

@ -9,6 +9,3 @@ RUN yum install -y cppcheck log4cplus-devel re2-devel
# Set Environment Variables
ENV JAVA_HOME /usr/lib/jvm/java
# Download HIRS Project
RUN git clone https://github.com/nsacyber/HIRS.git /root/HIRS