dustin
/
jenkinsagent
Archived
1
0
Fork 0

Compare commits

..

1 Commits

Author SHA1 Message Date
Dustin 562cf1af50 ci: Begin CI pipeline 2022-03-15 16:03:36 -05:00
2 changed files with 15 additions and 2 deletions

9
ci/Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM registry.fedoraproject.org/fedora
RUN dnf install -y \
make \
ncurses-devel \
perl-ExtUtils-MakeMaker \
perl-FindBin \
perl-Thread-Queue \
&& dnf clean all

8
ci/Jenkinsfile vendored
View File

@ -1,11 +1,15 @@
pipeline {
agent {
docker {
image 'registry.fedoraproject.org/fedora'
dockerfile {
dir 'ci'
args '--privileged -u 0:0'
}
}
options {
disableConcurrentBuilds()
}
stages {
stage('Prepare') {
steps {