blob: c236fb64893a4546bda5e6c8454993f29a1de333 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001#!/usr/bin/env groovy
2
3pipeline_worknode = "10.235.74.121"
4
5pipeline {
6 agent {
7 node {
8 label pipeline_worknode
9 }
10 }
11 options {
12 timestamps()
13 timeout(time: 1, unit: 'HOURS')
14 }
15 stages {
16 stage("prepare") {
17 steps {
18 sh 'echo prepare'
19 sh "printenv"
20 }
21 }
22 stage("check") {
23 steps {
24 sh 'echo check'
25 }
26 }
27 }
28}