7 Commits

Author SHA1 Message Date
Mike
f34e92ff3c Merge pull request #73 from bill-mahoney/patch-2
ci: remove unneeded daily scan
2022-03-07 10:14:19 -07:00
Bill Mahoney
c74f8119ae ci: remove unneeded daily scan 2022-03-07 10:13:26 -07:00
Mike
39ddea389a Merge pull request #48 from open-amt-cloud-toolkit/docker
build(docker): revert to ubuntu 20.04
2021-05-06 12:07:01 -07:00
Mike
9aa745e5a2 build(docker): revert to ubuntu 20.04 2021-05-06 11:45:56 -07:00
Mike
38c8bc2384 Merge pull request #47 from open-amt-cloud-toolkit/add_missing_ca
fix(docker): add missing ca-certs
2021-05-05 22:34:30 -07:00
Mike
584ca67799 build(docker): bump to ubuntu-20.10 2021-05-05 16:31:58 -07:00
Mike
cf7fac325f fix(docker): add missing ca-certs 2021-05-05 16:04:58 -07:00
2 changed files with 2 additions and 3 deletions

View File

@@ -11,7 +11,7 @@ RUN \
apt-get update -y -qq && \ apt-get update -y -qq && \
apt install -y -qq \ apt install -y -qq \
git cmake build-essential libssl-dev zlib1g-dev \ git cmake build-essential libssl-dev zlib1g-dev \
curl unzip zip pkg-config curl unzip zip pkg-config ca-certificates
RUN git clone https://github.com/open-amt-cloud-toolkit/rpc.git RUN git clone https://github.com/open-amt-cloud-toolkit/rpc.git
WORKDIR /rpc WORKDIR /rpc
RUN mkdir -p build RUN mkdir -p build

3
Jenkinsfile vendored
View File

@@ -1,6 +1,5 @@
pipeline { pipeline {
agent none agent none
triggers {cron '@daily'}
options { options {
buildDiscarder(logRotator(numToKeepStr: '5', daysToKeepStr: '30')) buildDiscarder(logRotator(numToKeepStr: '5', daysToKeepStr: '30'))
timestamps() timestamps()
@@ -169,4 +168,4 @@ pipeline {
} }
} }
} }
} }