08 2021 档案
摘要:declarative: pipeline { agent any pipeline { agent any stages { stage('Non-Parallel Stage') { steps { echo 'This stage will be executed first.' } } st
阅读全文
摘要: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
阅读全文