diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2018-06-04 15:42:00 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2018-06-04 15:42:00 -0400 |
commit | ebd532a6646c8137908c050a71ffc2cd955f0376 (patch) | |
tree | 80f9efe04b54aadd2aec112d241bbbd0ed347764 | |
parent | 81331b6b348100742a0fac8894ecf04bcfb3b20a (diff) | |
download | sandbox-ebd532a6646c8137908c050a71ffc2cd955f0376.tar.gz |
asdfasdfasd
-rw-r--r-- | Jenkinsfile | 33 |
1 files changed, 29 insertions, 4 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index 46dfd72..973ed7d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,14 +1,39 @@ if (utils.scm_checkout()) return +def body = """ +{ + "glossary": { + "title": "example glossary", + "GlossDiv": { + "title": "S", + "GlossList": { + "GlossEntry": { + "ID": "SGML", + "SortAs": "SGML", + "GlossTerm": "Standard Generalized Markup Language", + "Acronym": "SGML", + "Abbrev": "ISO 8879:1986", + "GlossDef": { + "para": "A meta-markup language, used to create markup languages such as DocBook.", + "GlossSeeAlso": ["GML", "XML"] + }, + "GlossSee": "markup" + } + } + } + } +} +""" +} dc = new DataConfig() -//dc.insert('test', '[{"test":"testing"}]') +dc.insert('PLZWORK', body) bc = new BuildConfig() bc.nodetype = 'linux' bc.build_mode = 'example' bc.build_cmds = ["echo hello"] -bc.test_cmds = [ - 'echo [{"test2":"alive2"}] > test2.json', -] +//bc.test_cmds = [ +// 'echo [{"test2":"alive2"}] > test2.json', +//] bc.test_artifacts = [dc] matrix = [bc] utils.run(matrix) |