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