摘要: declarative: pipeline { agent any pipeline { agent any stages { stage('Non-Parallel Stage') { steps { echo 'This stage will be executed first.' } } st 阅读全文
posted @ 2021-08-28 21:13 i舒 阅读(80) 评论(0) 推荐(0) 编辑
摘要: array_x = [1,2,3] map_x = ["a":1,"b":2] for (x in array) { println(x) } for(k,v in map_x) { println(k) } get 获取字典值: m = ["a":1, "b":2]println(m.get("c 阅读全文
posted @ 2021-08-28 21:04 i舒 阅读(34) 评论(0) 推荐(0) 编辑