aboutsummaryrefslogtreecommitdiffstats
path: root/Jenkinsfile
blob: 58c2d7a9180b26835f481471c08db29dfdd4a5d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
pipeline {
    agent {
        kubernetes {
            yamlFile 'fedora.yaml'
            defaultContainer 'fedora'
        }
    }

    triggers {
        pollSCM('H * * * *')
    }

    stages {
        stage('Run shell') {
            steps {
                sh 'cat /etc/os-release'
            }
        }
    }
}