git.fiddlerwoaroof.com
Browse code

check for env vars

Ed Langley authored on 04/11/2018 07:14:28
Showing 1 changed files
... ...
@@ -1,5 +1,12 @@
1 1
 version: 2
2 2
 jobs:
3
+  foo:
4
+    docker:
5
+      - image: debian:stretch
6
+    steps:
7
+      - run:
8
+          name: hi there
9
+          command: env
3 10
   publish-github-release:
4 11
     docker:
5 12
       - image: cibuilds/github:0.10
... ...
@@ -38,6 +45,22 @@ workflows:
38 45
   main:
39 46
     jobs:
40 47
       - build
48
+  tmp:
49
+    jobs:
50
+      - build:
51
+          filters:
52
+            branches:
53
+              ignore: /.*/
54
+            tags:
55
+              only: /^testing-\d+$/
56
+      - foo:
57
+          requires:
58
+            - build
59
+          filters:
60
+            branches:
61
+              ignore: /.*/
62
+            tags:
63
+              only: /^testing-\d+$/
41 64
   release:
42 65
     jobs:
43 66
       - build: