Skip to content

Commit

Permalink
add pipelines for all node versions
Browse files Browse the repository at this point in the history
  • Loading branch information
tjfontaine committed Jul 3, 2017
1 parent f065708 commit f3938f7
Showing 1 changed file with 24 additions and 3 deletions.
27 changes: 24 additions & 3 deletions wercker.yml
@@ -1,10 +1,31 @@
services:
- id: tjfontaine/dnsmasq
cmd: dnsmasq -q -d -h -p 15353 -R --synth-domain=google.com,8.8.8.0/24 --synth-domain=google.com,2001:4860:4860::8888/64 --mx-host=gmail.com,mail.google.com,10 --txt-record=google.com,v=spf1 --srv-host=_jabber._tcp.google.com,xmpp-server.l.google.com. --local=/exist/ --auth-server=google.com,eth* --auth-zone=google.com,8.8.8.0/24 --host-record=www.google.com,127.0.0.1 --host-record=www.google.com,::1 --host-record=ipv6.google.com,::1
build:
services:
- id: tjfontaine/dnsmasq
cmd: dnsmasq -q -d -h -p 15353 -R --synth-domain=google.com,8.8.8.0/24 --synth-domain=google.com,2001:4860:4860::8888/64 --mx-host=gmail.com,mail.google.com,10 --txt-record=google.com,v=spf1 --srv-host=_jabber._tcp.google.com,xmpp-server.l.google.com. --local=/exist/ --auth-server=google.com,eth* --auth-zone=google.com,8.8.8.0/24 --host-record=www.google.com,127.0.0.1 --host-record=www.google.com,::1 --host-record=ipv6.google.com,::1
box: node:latest
steps:
- npm-install
- npm-test
- script:
code: env | sort
build-node4:
box: node:4
steps:
- npm-install
- npm-test
- script:
code: env | sort
build-node6:
box: node:6
steps:
- npm-install
- npm-test
- script:
code: env | sort
build-node8:
box: node:8
steps:
- npm-install
- npm-test
- script:
code: env | sort

0 comments on commit f3938f7

Please sign in to comment.