Skip to content
This repository has been archived by the owner on Sep 20, 2021. It is now read-only.

Commit

Permalink
github(main.yml): Remove /usr/local/bin/2to3
Browse files Browse the repository at this point in the history
  • Loading branch information
soonho-tri committed Dec 23, 2020
1 parent d873a14 commit 27fa79a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ jobs:
- name: remove-bazelisk
run: if [[ -e /usr/local/bin/bazelisk ]]; then brew rm bazelisk; fi
- name: setup
run: ./setup/mac/install_prereqs.sh
run: |
rm -f '/usr/local/bin/2to3'
./setup/mac/install_prereqs.sh
- name: build and test
run: bazel test //... -c dbg
macos_big_sur_build_and_test:
Expand All @@ -35,7 +37,9 @@ jobs:
- name: remove-bazelisk
run: if [[ -e /usr/local/bin/bazelisk ]]; then brew rm bazelisk; fi
- name: setup
run: ./setup/mac/install_prereqs.sh
run: |
rm -f '/usr/local/bin/2to3'
./setup/mac/install_prereqs.sh
- name: build and test
run: bazel test //... -c dbg
ubuntu_focal_build_and_test:
Expand Down

0 comments on commit 27fa79a

Please sign in to comment.