summaryrefslogtreecommitdiff
path: root/Jenkinsfile
diff options
context:
space:
mode:
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 6fb6ed4..1c477f8 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -1,13 +1,13 @@
if (utils.scm_checkout()) return
dc = new DataConfig()
-dc.insert('test', '{"test":"testing"}')
+dc.insert('test', '[{"test":"testing"}]')
bc = new BuildConfig()
bc.nodetype = 'linux'
bc.build_mode = 'example'
bc.build_cmds = ["echo hello"]
bc.test_cmds = [
- 'echo {"test2":"alive2"} > test2.json',
+ 'echo [{"test2":"alive2"}] > test2.json',
]
bc.test_artifacts = [dc]
matrix = [bc]