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

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

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