all file
This commit is contained in:
parent
084d2ca4a0
commit
55193b74d4
12
Dockerfile
Normal file
12
Dockerfile
Normal 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
12
Jenkinsfile
vendored
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
pipeline {
|
||||||
|
agent { dockerfile true }
|
||||||
|
stages {
|
||||||
|
stage('Test') {
|
||||||
|
steps {
|
||||||
|
sh 'make --version'
|
||||||
|
sh 'sclite --help || true'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user