diff --git a/.bazelrc b/.bazelrc index 7eee231..f11e1de 100644 --- a/.bazelrc +++ b/.bazelrc @@ -1,5 +1,9 @@ # Placeholder file for Prow +common:ci --noshow_progress +common:ci --noshow_loading_progress +common:ci --test_output=errors + # Required by envoy and its tests build --define=grpc_no_ares=true build --cxxopt=-std=c++17 --host_cxxopt=-std=c++17 diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..07293c5 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,23 @@ +name: Build + +permissions: + contents: read + +on: + pull_request: + push: + branches: + - main + +concurrency: + group: >- + ${{ github.event.inputs.head_ref || github.run_id }} + + +jobs: + envoy: + runs-on: ubuntu-24.04 + steps: + - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + - run: | + bazel build --config=ci //:all_libs diff --git a/BUILD.bazel b/BUILD.bazel index 10e750e..bd58cdb 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -21,6 +21,6 @@ cc_library( "//proto_processing_lib:factory_helper", "//proto_processing_lib:interface_util", "//proto_processing_lib/proto_scrubber", - "//proto_processing_lib/proto_scrubber:cloud_audit_log_field_checker", + "//proto_processing_lib/proto_scrubber:field_mask_path_checker", ], )