oss-fuzz/infra
DavidKorczynski fa5ec3a167
infra: compile: fix jvm introspector builds (#10623)
Ref:
https://github.com/google/oss-fuzz/pull/10481#issuecomment-1613772713

Java projects are currently failing Fuzz Introspector following
https://github.com/google/oss-fuzz/pull/10538

```bash
Step #6 - "compile-libfuzzer-introspector-x86_64": ---------------------------------------------------------------
Step #6 - "compile-libfuzzer-introspector-x86_64": chmod: cannot access '/workspace/out/libfuzzer-introspector-x86_64/jazzer_driver_with_sanitizer': No such file or directory
Step #6 - "compile-libfuzzer-introspector-x86_64": ********************************************************************************
```

There is a missing "introspector" conditional in
6922c8c1ac/infra/base-images/base-builder/compile (L152-L171)

This causes line 171 to fail.

It may be convenient to search for "jvm" in the table here
https://introspector.oss-fuzz.com/indexing-overview which will show the
introspector build status is red for all.
2023-07-06 09:25:45 -04:00
..
base-images infra: compile: fix jvm introspector builds (#10623) 2023-07-06 09:25:45 -04:00
build Don't tee build logs. (#10647) 2023-07-06 10:09:04 +10:00
ci Add project integration PR helper (#10376) 2023-06-06 04:35:46 +00:00
cifuzz Show minimal permission needed for CIFuzz workflow (#10283) 2023-06-15 17:16:44 -04:00
experimental Delete Symlink Detection from syssan (#10479) 2023-06-07 21:23:57 -04:00
tools Add helper scripts for wycheproof (#9008) 2022-11-21 17:20:42 -05:00
uploader
.dockerignore
MAINTAINERS.csv Add MAINTAINERS (#10426) 2023-06-02 11:24:34 +10:00
README.md
bisector.py Fix exception in bisector.py (#9399) 2023-01-12 09:26:10 +11:00
bisector_test.py
build_fuzzers.Dockerfile
build_specified_commit.py
build_specified_commit_test.py
constants.py Source-based code coverage reporting for Jazzer.js (#9758) 2023-02-23 18:51:21 +11:00
helper.py disable ANSI color in the output of `build_fuzzers` when stdin's file descripter is not a terminal (#10632) 2023-07-05 11:30:22 +10:00
helper_test.py
manifest.py [arm] Add manifest script (#8223) 2022-08-12 09:04:24 -04:00
pr_helper.py Add main_repo and language to new project doc, and links to field explanations. Fix workflow reference to repo_url. (#10553) 2023-06-22 12:30:01 +10:00
presubmit.py [presubmit] Add check to ensure projects have valid names. (#10295) 2023-05-10 22:36:11 -04:00
pytest.ini
repo_manager.py Consider submodules while commit and PR checkout (#7500) 2022-04-05 11:14:39 -04:00
repo_manager_test.py
retry.py
run_fuzzers.Dockerfile [cifuzz] remove test code. (#10181) 2023-04-27 14:26:15 -04:00
templates.py Enable github issue filing in new projects. (#7810) 2022-06-08 11:47:51 +10:00
test Enable centipede on a bunch of projects (#9643) 2023-02-13 14:24:42 -05:00
test_repos.py
utils.py
utils_test.py

README.md

infra

OSS-Fuzz project infrastructure

Core infrastructure:

  • base-images - docker images for building fuzz targets & corresponding jenkins pipeline.

Continuous Integration infrastructure:

  • ci - script to build projects in CI.

helper.py

script to automate common docker operations

Command Description
generate Generates skeleton files for a new project
build_image Builds a docker image for a given project
build_fuzzers Builds fuzz targets for a given project
run_fuzzer Runs a fuzz target in a docker container
coverage Runs fuzz target(s) in a docker container and generates a code coverage report. See Code Coverage doc
reproduce Runs a testcase to reproduce a crash
shell Starts a shell inside the docker image for a project