aboutsummaryrefslogtreecommitdiffstats
path: root/Jenkinsfile
blob: 50880aab0632bc89083e62d4ea97fce031d7f560 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pipeline {
  agent {
    kubernetes {
      yamlFile 'fedora.yaml'
    }
  }
  stages {
    stage('Run shell') {
      steps {
        container('fedora') {
          sh 'cat /etc/os-release'
        }
      }
    }
  }
}