Skip to content

Commit

Permalink
chore: workaround for repo-tools EPERM (#22)
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 324a668 commit fd4949f
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions packages/google-cloud-resourcemanager/.circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,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 @@ -121,6 +126,10 @@ jobs:
name: Install modules and dependencies.
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
npm link
- run:
name: Link the module being tested to the samples.
Expand All @@ -140,7 +149,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 fd4949f

Please sign in to comment.