Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clean up Bazel Installation during Travis Build (improbable-eng#122)
Browse files Browse the repository at this point in the history
* Clean up Bazel Installation during Travis Build

* Fixup build steps

* Remove trailing slashes

* Remove bazel deb :P
jonnyreeves authored and chrisgervang committed Nov 14, 2018

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent e9c9720 commit 10fb111
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 0 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
test/
src/
.*
*.deb
release.sh
generate.sh
examples/
7 changes: 5 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -31,8 +31,11 @@ cache:
directories:
- node_modules
before_install:
- wget https://github.com/bazelbuild/bazel/releases/download/0.11.0/bazel_0.11.0-linux-x86_64.deb
- sudo dpkg -i bazel_0.11.0-linux-x86_64.deb
- BAZEL_VERSION=0.11.0
- BAZEL_DEB="bazel_${BAZEL_VERSION}-linux-x86_64.deb"
- wget https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/${BAZEL_DEB} -O "${BAZEL_DEB}"
- sudo dpkg -i ${BAZEL_DEB}
- rm ${BAZEL_DEB}
install:
- npm install
script:

0 comments on commit 10fb111

Please sign in to comment.