Skip to content

Commit

Permalink
chore: removing node7 job from CircleCI (#32)
Browse files Browse the repository at this point in the history
* chore: removing node7 job from CircleCI

* chore: rename reference
  • Loading branch information
alexander-fenster authored and stephenplusplus committed Feb 23, 2018
1 parent ff4601d commit e87d846
Showing 1 changed file with 21 additions and 41 deletions.
62 changes: 21 additions & 41 deletions packages/google-cloud-node/.circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
---
# "Include" for unit tests definition.
unit_tests: &unit_tests
steps:
unit_tests:
steps: &unit_tests
- checkout
- run:
name: Install modules and dependencies.
Expand All @@ -13,8 +11,7 @@ unit_tests: &unit_tests
name: Submit coverage data to codecov.
command: node_modules/.bin/codecov
when: always

version: 2.0
version: 2
workflows:
version: 2
tests:
Expand All @@ -27,10 +24,6 @@ workflows:
filters:
tags:
only: /.*/
- node7:
filters:
tags:
only: /.*/
- node8:
filters:
tags:
Expand All @@ -43,7 +36,6 @@ workflows:
requires:
- node4
- node6
- node7
- node8
- node9
filters:
Expand All @@ -53,7 +45,6 @@ workflows:
requires:
- node4
- node6
- node7
- node8
- node9
filters:
Expand All @@ -67,7 +58,7 @@ workflows:
branches:
only: master
tags:
only: /^v[\d.]+$/
only: '/^v[\d.]+$/'
- sample_tests:
requires:
- lint
Expand All @@ -76,7 +67,7 @@ workflows:
branches:
only: master
tags:
only: /^v[\d.]+$/
only: '/^v[\d.]+$/'
- publish_npm:
requires:
- system_tests
Expand All @@ -85,12 +76,11 @@ workflows:
branches:
ignore: /.*/
tags:
only: /^v[\d.]+$/

only: '/^v[\d.]+$/'
jobs:
node4:
docker:
- image: node:4
- image: 'node:4'
user: node
steps:
- checkout
Expand All @@ -106,28 +96,22 @@ jobs:
when: always
node6:
docker:
- image: node:6
user: node
<<: *unit_tests
node7:
docker:
- image: node:7
- image: 'node:6'
user: node
<<: *unit_tests
steps: *unit_tests
node8:
docker:
- image: node:8
- image: 'node:8'
user: node
<<: *unit_tests
steps: *unit_tests
node9:
docker:
- image: node:9
- image: 'node:9'
user: node
<<: *unit_tests

steps: *unit_tests
lint:
docker:
- image: node:8
- image: 'node:8'
user: node
steps:
- checkout
Expand All @@ -153,10 +137,9 @@ jobs:
command: npm run lint
environment:
NPM_CONFIG_PREFIX: /home/node/.npm-global

docs:
docker:
- image: node:8
- image: 'node:8'
user: node
steps:
- checkout
Expand All @@ -166,10 +149,9 @@ jobs:
- run:
name: Build documentation.
command: npm run docs

sample_tests:
docker:
- image: node:8
- image: 'node:8'
user: node
steps:
- checkout
Expand Down Expand Up @@ -208,10 +190,9 @@ jobs:
command: rm .circleci/key.json
when: always
working_directory: /home/node/speech-samples/

system_tests:
docker:
- image: node:8
- image: 'node:8'
user: node
steps:
- checkout
Expand All @@ -233,16 +214,15 @@ jobs:
name: Remove unencrypted key.
command: rm .circleci/key.json
when: always

publish_npm:
docker:
- image: node:8
- image: 'node:8'
user: node
steps:
- checkout
- run:
name: Set NPM authentication.
command: echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
command: 'echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc'
- run:
name: Publish the module to npm.
command: npm publish
name: Publish the module to npm.
command: npm publish

0 comments on commit e87d846

Please sign in to comment.