diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2018-06-04 14:26:47 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2018-06-04 14:26:47 -0400 |
commit | 2845ee447f26ece9e11fdb3f424a29f299e39baa (patch) | |
tree | 6de8750626a85811cefe2ea7c7a46918d7c0047c | |
parent | 72079725c20bfa6b7ff78e0e68f0e09b5e0e865c (diff) | |
download | sandbox-2845ee447f26ece9e11fdb3f424a29f299e39baa.tar.gz |
adsfasd
-rw-r--r-- | Jenkinsfile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index a45afdb..8b73dc3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -6,7 +6,11 @@ bc = new BuildConfig() bc.nodetype = 'linux' bc.build_mode = 'example' bc.build_cmds = ["echo hello"] -bc.test_cmds = ["echo '{\"test\":\"alive\"}' > test.json"] +bc.test_cmds = [ + "echo '{\"test\":\"alive\"}' > test.json", + 'echo {"test2":"alive2"} > test2.json', + 'find .', +] bc.test_artifacts = [dc] matrix = [bc] utils.run(matrix) |