Compare commits

...

8 Commits

Author SHA1 Message Date
jerry
e5f48b9f37 🐳 chore: 2022-05-03 18:28:18 +08:00
jerry
36a3a9eb5d 🐳 chore: modify 2022-05-03 18:21:25 +08:00
jerry
b9c21e1640 🐳 chore: update dockerfile 2022-05-03 18:12:20 +08:00
jerry
0d823d5dc7 🐳 chore: change image 2022-05-03 17:20:34 +08:00
jerry
08da84e67d 🐳 chore: try 2022-05-03 16:54:54 +08:00
jerry
d283d3f346 chore: modify image tag 2022-05-01 10:49:44 +08:00
jerry
1e04500382 chore: add image version 2022-05-01 10:43:02 +08:00
jerry
28ea231170 chore: update jenkinsfile 2022-04-30 20:09:18 +08:00
2 changed files with 6 additions and 11 deletions

View File

@@ -1,4 +1,2 @@
FROM shenmo7192/uos-21-dtk5.4:1.0
ADD . /root/workdir
WORKDIR /root/workdir
RUN dpkg-buildpackage
FROM python:3
RUN pip3 install requests

11
Jenkinsfile vendored
View File

@@ -4,12 +4,11 @@ pipeline {
stage('build') {
agent {
docker {
image 'jerry979/dtke:5.11.1'
image 'sparkstore/qt-build-image:5.11-1'
}
}
steps {
sh 'mkdir build && cd build && qmake .. && make '
sh 'mkdir build && cd build && qmake .. && make && cd ..'
archiveArtifacts(artifacts: 'build/src/spark-store', allowEmptyArchive: true, defaultExcludes: true)
}
}
@@ -19,15 +18,13 @@ pipeline {
dockerfile {
filename '.gitee/Dockerfile'
}
}
environment {
gitee_token = credentials('1')
}
steps {
sh "python3 .gitee/callback.py"
sh 'python3 .gitee/callback.py'
}
}
}
}
}