'update files with ansible'

This commit is contained in:
jonny 2022-07-11 13:40:22 +00:00
parent e98ebc13ac
commit 78115eed8e
2 changed files with 4 additions and 4 deletions

View File

@ -12,9 +12,9 @@ RUN echo http://dl-4.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositorie
apk -U upgrade --ignore alpine-baselayout && \ apk -U upgrade --ignore alpine-baselayout && \
apk -U add python3 apk -U add python3
RUN wget https://github.com/pymedusa/Medusa/archive/v1.0.4.tar.gz -O medusa.tar.gz && \ RUN wget https://github.com/pymedusa/Medusa/archive/v1.0.5.tar.gz -O medusa.tar.gz && \
tar zxvf medusa.tar.gz && \ tar zxvf medusa.tar.gz && \
mv Medusa-1.0.4 medusa && \ mv Medusa-1.0.5 medusa && \
rm -rf medusa.tar.gz && \ rm -rf medusa.tar.gz && \
apk del make gcc g++ && \ apk del make gcc g++ && \
rm -rf /tmp/src && \ rm -rf /tmp/src && \

4
Jenkinsfile vendored
View File

@ -26,11 +26,11 @@ spec:
stage('Build with Kaniko') { stage('Build with Kaniko') {
git url: 'ssh://git@git.ervine.org/jonny/x86_64-alpine-medusa.git', credentialsId: 'jenkins-to-git' git url: 'ssh://git@git.ervine.org/jonny/x86_64-alpine-medusa.git', credentialsId: 'jenkins-to-git'
container('kaniko') { container('kaniko') {
sh "/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=true --destination=harbor.ervine.dev/public/x86_64/alpine/medusa:v1.0.4" sh "/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=true --destination=harbor.ervine.dev/public/x86_64/alpine/medusa:v1.0.5"
} }
} }
stage('Notify gchat') { stage('Notify gchat') {
hangoutsNotify message: "Medusa 1.0.4 on Alpine Linux has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false hangoutsNotify message: "Medusa 1.0.5 on Alpine Linux has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false
} }
} }
} }