This commit is contained in:
s416122 2020-04-03 11:29:56 +02:00
parent 084d2ca4a0
commit 55193b74d4
3 changed files with 24 additions and 0 deletions

12
Dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM ubuntu:latest
RUN apt update -y && apt install -y make
RUN apt install -y git
RUN apt install -y gcc
RUN gcc --version
RUN apt install -y build-essential
RUN git clone https://github.com/usnistgov/SCTK.git
WORKDIR SCTK
RUN make config && make all && make check && make install && make doc
ENV PATH=$PATH:/SCTK/bin

12
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,12 @@
pipeline {
agent { dockerfile true }
stages {
stage('Test') {
steps {
sh 'make --version'
sh 'sclite --help || true'
}
}
}
}

View File