aboutsummaryrefslogtreecommitdiff
path: root/.github
AgeCommit message (Collapse)Author
2021-01-20Remove unnecessary stuffJonathan Metzman
2020-12-18Improve CIFuzz tests (#4868)jonathanmetzman
1. Fix problem where permissions were being changed to root by non-root test (test was doing this by invoking test_all.py within docker). 2. Mark tests as integration tests so that cifuzz_test.py can be run in a reasonable amount of time. 3. Prevent some unittests from polluting source repo. 4. Add .venv to .gitignore 5. Rename test_test_all.py to the correctly formatted name "test_all_test.py"
2020-12-04Revert msan patch (#4788)Abhishek Arya
* Revert "Fix msan build breakage. (#4787)" This reverts commit 8f4d1b237d55eeb6a098719f3602f89bd032b2b3. * Revert "Clean up MemorySanitizer library warnings (#4694)" This reverts commit 6fc050ec9ec29534ad079c83ef4bc2f709c083df.
2020-12-03Clean up MemorySanitizer library warnings (#4694)David Cook
* Update infra/base-images/all.sh Add build of base-sanitizer-libs-builder and msan-libs-builder to this shell script. * msan: Don't warn on un-instrumented standard libs These libraries do not need to be built with instrumentation, because MemorySanitizer includes interceptors for them. * Fix indentation * Add missing docstrings * Fix unused variable * Fix invalid names * Install python-apt on CI * Revert "Install python-apt on CI" This reverts commit d3da49cf90f138674c1a8bcbdca2f0dfe6c385d1. * Install and use python-apt in system directory * Revert "Install and use python-apt in system directory" This reverts commit e0ede101fbdfbf82da5f32d0a206da247e6dde98. * Build python-apt from source * Check out correct version of python-apt * Fix octal literals * More indentation fixes * Add more missing docstrings * Change variable names of opened files * Remove unused import * Ignore lints about package.Package API * Fix or ignore remaining invalid names * Fix apparent typo in compiler_wrapper_test.py -z should precede a keyword, not a long option * Fix use of xrange * Style fixes, compiler_wrapper * Fix apparent error in compiler_wrapper_test.py Similar to the previous error, the test case would pass "-z --no-undefined" to the linker. "-z" only has an effect when it is followed by a keyword, otherwise ld ignores it and prints a warning message. In this test case, "-z" and "--no-undefined" were passed in two separate "-Wl," compiler arguments, but they reflect a common issue. * Add missing license header * Rename more functions * Better name for global variable * Rename methods of Package * Rename functions in msan_builder.py * Fix invalid variable names * Fix useless-object-inheritance * pylint: Fixes for Package and its subclasses * Remove unused imports * Indentation fixes * Fix too-may-locals error in msan_build.py * Add missing docstrings
2020-11-20Fix permission denied errors on CI in unittests (#4664)jonathanmetzman
Also remove usrstcp from the repos we do tests since they no longer work with usrstcp (repo history seems to have been rewritten).
2020-07-15CI fix. (#4139)Abhishek Arya
2020-07-10Missing hyphen (#4106)kabeer27
* Missing hyphen * Testing infra-tests * Testing ingra-tests * Testing infra-tests * Undoing license header changes Co-authored-by: Kabeer Seth <kabeerseth@google.com>
2020-07-09Test fix pip installs (#4099)kabeer27
2020-06-29Renaming infra/build/functions files (#4031)kabeer27
Renamed main.py to sync.py and test_sync.py to sync_test.py Co-authored-by: Kabeer Seth <kabeerseth@google.com>
2020-06-25[util-linux] cover mnt_table_parse_stream (#4032)Evgeny Vereshchagin
* [util-linux] cover mnt_table_parse_stream Waiting for https://github.com/karelzak/util-linux/pull/1068 * temporarily point OSS-Fuzz to evverx/util-linux * make sure it can be built with sanitizer=coverage
2020-06-25Cloud function for syncing OSS-Fuzz projects (#3538). (#4023)kabeer27
Integrating the first cloud function i implemented which syncs the project list from github and uploads the list to cloud datastore, which will be used by another cloud function to request builds. Co-authored-by: Kabeer Seth <kabeerseth@google.com>
2020-06-12Add Github Actions CI. (#3971)Abhishek Arya