Skip to content

Commit

Permalink
chore: one more workaround for repo-tools EPERM (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-fenster authored and callmehiphop committed Mar 29, 2018
1 parent 44671bd commit a342bb3
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion packages/google-cloud-node/.circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,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 Down Expand Up @@ -228,7 +232,12 @@ jobs:
-k "${SYSTEM_TESTS_ENCRYPTION_KEY}"
- 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 system tests.
command: npm run system-test
Expand Down

0 comments on commit a342bb3

Please sign in to comment.