Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .bazelrc
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ build --javabase=@bazel_tools//tools/jdk:remote_jdk11
build --enable_platform_specific_config

# Pass PATH, CC, CXX and LLVM_CONFIG variables from the environment.
build --action_env=CC
build --action_env=CXX
build --action_env=CC=gcc-11
build --action_env=CXX=g++-11
build --action_env=LD_LIBRARY_PATH
build --action_env=LLVM_CONFIG
build --action_env=PATH
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

- name: Setup Bazel
run: |
sudo apt-get -qq install npm
sudo apt-get -qq install npm gcc-11 g++-11
sudo npm install -g @bazel/bazelisk
- name: Use Bazel
if: matrix.os != 'windows'
Expand Down
1 change: 0 additions & 1 deletion deps.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ def github_archive(name, org, repo, ref, sha256):
name = name,
strip_prefix = repo + "-" + stripRef,
urls = [
"https://mirror.bazel.build/github.com/%s/%s/archive/%s.tar.gz" % (org, repo, ref),
"https://github.com/%s/%s/archive/%s.tar.gz" % (org, repo, ref),
],
sha256 = sha256,
Expand Down