Skip to content

Commit

Permalink
build(bazel): Disable non-bazelmod with boringssl
Browse files Browse the repository at this point in the history
Use --sandbox_debug to see verbose messages from the sandbox and retain the sandbox build root for debugging
In file included from external/_main~data_deps_ext~boringssl/src/crypto/evp/evp.c:65:
In file included from external/_main~data_deps_ext~boringssl/src/include/openssl/mem.h:60:
external/_main~data_deps_ext~boringssl/src/include/openssl/base.h:258:13: error: typedef redefinition with different types ('int' vs 'struct crypto_threadid_st')
typedef int CRYPTO_THREADID;
            ^
/usr/local/include/openssl/crypto.h:309:3: note: previous definition is here
} CRYPTO_THREADID;
  • Loading branch information
gjasny committed Dec 18, 2023
1 parent bd80293 commit 1f9584b
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/bazel-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,18 @@ jobs:
if: runner.os == 'macOS'
run: brew install telegraf

- name: Build with SSL
run: bazel build --config=ssl ${{ matrix.bazel_args }} //...
#- name: Build with SSL
# run: bazel build --config=ssl ${{ matrix.bazel_args }} //...

- name: Test with SSL
run: bazel test --config=ssl ${{ matrix.bazel_args }} --test_output=all //...
#- name: Test with SSL
# run: bazel test --config=ssl ${{ matrix.bazel_args }} --test_output=all //...

- name: Build with SSL and bzlmod
run: bazel build --enable_bzlmod --config=ssl ${{ matrix.bazel_args }} //...

- name: Test with SSL and bzlmod
run: bazel test --enable_bzlmod --config=ssl ${{ matrix.bazel_args }} --test_output=all //...

- name: Build
run: bazel build //...

Expand Down

0 comments on commit 1f9584b

Please sign in to comment.