mirror of https://github.com/google/oss-fuzz.git
teleport: Update to go1.18 native fuzzing (#7895)
* Swap from `compile_go_fuzzer` to `compile_native_go_fuzzer` * Move building to an internal script `fuzz/oss-fuzz-build.sh` to ease addition of new fuzzing methods * Update `auto_ccs`
This commit is contained in:
parent
97588368dd
commit
da02c29e94
|
@ -1,4 +1,4 @@
|
|||
# Copyright 2020 Google Inc.
|
||||
# Copyright 2020 Google LLC
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
|
@ -14,7 +14,7 @@
|
|||
#
|
||||
################################################################################
|
||||
|
||||
FROM gcr.io/oss-fuzz-base/base-builder-go-codeintelligencetesting
|
||||
RUN git clone --depth 1 https://github.com/gravitational/teleport.git
|
||||
FROM gcr.io/oss-fuzz-base/base-builder-go
|
||||
RUN git clone --depth 1 https://github.com/gravitational/teleport.git teleport
|
||||
WORKDIR teleport
|
||||
COPY build.sh $SRC/
|
||||
WORKDIR $SRC/teleport
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#!/bin/bash -eu
|
||||
# Copyright 2020 Google Inc.
|
||||
# Copyright 2020 Google LLC
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
|
@ -15,7 +15,4 @@
|
|||
#
|
||||
################################################################################
|
||||
|
||||
go mod tidy
|
||||
rm /root/go/pkg/mod/github.com/aws/aws-sdk-go-v2/internal/ini@v1.2.2/fuzz.go
|
||||
compile_go_fuzzer github.com/gravitational/teleport/lib/fuzz FuzzParseProxyJump utils_fuzz gofuzz
|
||||
compile_go_fuzzer github.com/gravitational/teleport/lib/fuzz FuzzNewExpression parse_fuzz gofuzz
|
||||
bash -x ./fuzz/oss-fuzz-build.sh
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
homepage: "https://github.com/gravitational/teleport"
|
||||
main_repo: "https://github.com/gravitational/teleport"
|
||||
primary_contact: "reed@goteleport.com"
|
||||
auto_ccs :
|
||||
- "adam@adalogics.com"
|
||||
- "oss-fuzz@goteleport.com"
|
||||
language: go
|
||||
primary_contact: "reed@goteleport.com"
|
||||
main_repo: "https://github.com/gravitational/teleport"
|
||||
auto_ccs:
|
||||
- "oss-fuzz@goteleport.com"
|
||||
- "zac.bergquist@goteleport.com"
|
||||
- "ossfuzz1337@gmail.com"
|
||||
fuzzing_engines:
|
||||
- libfuzzer
|
||||
sanitizers:
|
||||
|
|
Loading…
Reference in New Issue