Skip to content

Commit

Permalink
disable bazel for now (#1101)
Browse files Browse the repository at this point in the history
Unclear why this is failing so disabling for now. bazel build still works locally so this is a bazelisk/github workflow thing.
  • Loading branch information
dominichamon authored Mar 5, 2021
1 parent 5c43112 commit 4c26070
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/bazel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,23 @@ jobs:
steps:
- uses: actions/checkout@v1

- name: mount bazel cache
uses: actions/cache@v1
with:
path: "/home/runner/.cache/bazel"
key: bazel
# - name: mount bazel cache
# uses: actions/cache@v1
# with:
# path: "/home/runner/.cache/bazel"
# key: bazel

- name: install bazelisk
run: |
curl -LO "https://github.com/bazelbuild/bazelisk/releases/download/v1.1.0/bazelisk-linux-amd64"
mkdir -p "${GITHUB_WORKSPACE}/bin/"
mv bazelisk-linux-amd64 "${GITHUB_WORKSPACE}/bin/bazel"
chmod +x "${GITHUB_WORKSPACE}/bin/bazel"
# - name: install bazelisk
# run: |
# curl -LO "https://github.com/bazelbuild/bazelisk/releases/download/v1.1.0/bazelisk-linux-amd64"
# mkdir -p "${GITHUB_WORKSPACE}/bin/"
# mv bazelisk-linux-amd64 "${GITHUB_WORKSPACE}/bin/bazel"
# chmod +x "${GITHUB_WORKSPACE}/bin/bazel"

- name: build
run: |
"${GITHUB_WORKSPACE}/bin/bazel" build //...
# - name: build
# run: |
# "${GITHUB_WORKSPACE}/bin/bazel" build //...

- name: test
run: |
"${GITHUB_WORKSPACE}/bin/bazel" test //test/...
# - name: test
# run: |
# "${GITHUB_WORKSPACE}/bin/bazel" test //test/...

0 comments on commit 4c26070

Please sign in to comment.