Skip to content

Commit

Permalink
chore: removing node7 job from CircleCI (#16)
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 eb6e9f8 commit d7bba8c
Showing 1 changed file with 19 additions and 38 deletions.
57 changes: 19 additions & 38 deletions packages/google-cloud-bigquery-datatransfer/.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,20 +58,19 @@ workflows:
branches:
only: master
tags:
only: /^v[\d.]+$/
only: '/^v[\d.]+$/'
- publish_npm:
requires:
- system_tests
filters:
branches:
ignore: /.*/
tags:
only: /^v[\d.]+$/

only: '/^v[\d.]+$/'
jobs:
node4:
docker:
- image: node:4
- image: 'node:4'
user: node
steps:
- checkout
Expand All @@ -96,28 +86,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 @@ -134,10 +118,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 @@ -147,10 +130,9 @@ jobs:
- run:
name: Build documentation.
command: npm run docs

system_tests:
docker:
- image: node:8
- image: 'node:8'
user: node
steps:
- checkout
Expand All @@ -173,16 +155,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 --access=public
name: Publish the module to npm.
command: npm publish --access=public

0 comments on commit d7bba8c

Please sign in to comment.