aboutsummaryrefslogtreecommitdiffstats
path: root/jenkinsfile.libtest
blob: b906f1eb2cf9c03b75b455938b2cb617f59d8533 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env groovy
import org.kraxel.Testlib

pipeline {
    agent any
    stages {
	stage ('Hello') {
	    steps {
		sh 'echo hello world'
	    }
	}
	stage ('LibHello') {
	    steps {
		Testlib.LibHello()
	    }
	}
    }
}