Skip to content

Commit

Permalink
chore: workaround for repo-tools EPERM (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-fenster authored and stephenplusplus committed Mar 28, 2018
1 parent c8c7799 commit 6a275df
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions packages/google-cloud-speech/.circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,12 @@ jobs:
fi
- run:
name: Install modules and dependencies.
command: npm install
command: |-
npm install
repo_tools="node_modules/@google-cloud/nodejs-repo-tools/bin/tools"
if ! test -x "$repo_tools"; then
chmod +x "$repo_tools"
fi
- run:
name: Run unit tests.
command: npm test
Expand Down Expand Up @@ -127,6 +132,10 @@ jobs:
command: |
mkdir -p /home/node/.npm-global
npm install
repo_tools="node_modules/@google-cloud/nodejs-repo-tools/bin/tools"
if ! test -x "$repo_tools"; then
chmod +x "$repo_tools"
fi
npm link
environment:
NPM_CONFIG_PREFIX: /home/node/.npm-global
Expand All @@ -153,7 +162,12 @@ jobs:
- run: *remove_package_lock
- run:
name: Install modules and dependencies.
command: npm install
command: |-
npm install
repo_tools="node_modules/@google-cloud/nodejs-repo-tools/bin/tools"
if ! test -x "$repo_tools"; then
chmod +x "$repo_tools"
fi
- run:
name: Build documentation.
command: npm run docs
Expand Down

0 comments on commit 6a275df

Please sign in to comment.