Skip to content

Commit

Permalink
bazel: add .bazelrc
Browse files Browse the repository at this point in the history
  • Loading branch information
adambabik committed Jul 24, 2023
1 parent 46a4051 commit 78aa6e4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
3 changes: 3 additions & 0 deletions .bazelrc
@@ -0,0 +1,3 @@
build --cxxopt=-std=c++14
build --host_cxxopt=-std=c++14
build --test_output=errors
12 changes: 5 additions & 7 deletions .github/workflows/ci.yml
Expand Up @@ -70,13 +70,11 @@ jobs:
key: v1-bazel-cache-${{ hashFiles('repositories.bzl') }}
restore-keys: v1-bazel-cache-
- name: Configure bazel
run: |
cat > .bazelrc << EOF
startup --output_base /home/vscode/.cache/_grpc_gateway_bazel
build --test_output errors
build --features race
# Protobuf v3.22.0+ requires C++14
build --repo_env=BAZEL_CXXOPTS=-std=c++14
run:
| # put .bazelrc in $HOME so that it's read before project's .bazelrc
cat > /home/vscode/.bazelrc << EOF
startup --output_base=/home/vscode/.cache/_grpc_gateway_bazel
build --@io_bazel_rules_go//go/config:race
# Workaround https://github.com/bazelbuild/bazel/issues/3645
# See https://docs.bazel.build/versions/0.23.0/command-line-reference.html
build --local_ram_resources=7168 # Github runners have 7G of memory
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Expand Up @@ -7,7 +7,6 @@ bazel-genfiles
bazel-grpc-gateway
bazel-out
bazel-testlogs
/.bazelrc

# Go vendor directory
vendor
Expand Down

0 comments on commit 78aa6e4

Please sign in to comment.