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
10 changes: 2 additions & 8 deletions .github/workflows/bazel_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,9 @@
name: bazel_lint
on:
push:
paths:
- '**/BUILD'
- '**.bzl'
- '**/BUILD.bazel'
branches: [main]
pull_request:
paths:
- '**/BUILD'
- '**.bzl'
- '**/BUILD.bazel'
branches: [main]
jobs:
bazel_lint:
runs-on: ubuntu-latest
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/bazel_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ name: Bazel Test

on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
Expand Down
14 changes: 4 additions & 10 deletions .github/workflows/cpp_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,14 @@
name: cpplint
on:
push:
paths:
- '**.cc'
- '**.h'
- '**.cpp'
branches: [main]
pull_request:
paths:
- '**.cc'
- '**.h'
- '**.cpp'
branches: [main]
jobs:
cpplint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- run: pip install cpplint
- run: cpplint --recursive .
4 changes: 2 additions & 2 deletions .github/workflows/oss_fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
name: OSS-Fuzz CI Fuzz Test
on:
push:
branches:
- master
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: '0 0 * * *'

Expand Down
1 change: 1 addition & 0 deletions examples/fuzzed_data_provider_fuzz_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

#include <cstddef>
#include <cstdint>
#include <vector>

// Workaround for
// https://github.com/llvm/llvm-project/commit/0cccccf0d2cbd707503263785f9a0407d3e2bd5ea
Expand Down
2 changes: 1 addition & 1 deletion examples/runfiles_fuzz_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
using ::bazel::tools::cpp::runfiles::Runfiles;

namespace {
Runfiles *runfiles = nullptr;
Runfiles *runfiles = nullptr;
}

extern "C" void LLVMFuzzerInitialize(int *argc, char ***argv) {
Expand Down
1 change: 1 addition & 0 deletions fuzzing/replay/test_replayer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#include <unistd.h>

#include <memory>
#include <string>

#include "absl/strings/str_cat.h"
#include "absl/strings/str_format.h"
Expand Down
Loading