Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

astroid: fix build and update maintainers #12386

Merged
merged 1 commit into from
Aug 21, 2024
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
15 changes: 11 additions & 4 deletions projects/astroid/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,15 @@
# limitations under the License.
#
##########################################################################

FROM gcr.io/oss-fuzz-base/base-builder-python
RUN pip3 install --upgrade pip
RUN git clone https://github.com/PyCQA/astroid astroid
COPY *.sh *py $SRC/
WORKDIR $SRC/astroid

RUN pip3 install --disable-pip-version-check --no-cache-dir pip==24.2

# Pin the astroid version to 3.2.4 until Python 3.9+ is supported on OSS-Fuzz:
# https://github.com/google/oss-fuzz/pull/12027
RUN git clone --depth=1 --branch=v3.2.4 https://github.com/pylint-dev/astroid

COPY *.py *.sh "$SRC/"

WORKDIR "$SRC/astroid"
13 changes: 8 additions & 5 deletions projects/astroid/project.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
homepage: https://github.com/PyCQA/astroid
main_repo: https://github.com/PyCQA/astroid
homepage: https://github.com/pylint-dev/astroid
main_repo: https://github.com/pylint-dev/astroid
language: python
primary_contact: "[email protected]"
auto_ccs:
- "[email protected]"
fuzzing_engines:
- libfuzzer
- libfuzzer
sanitizers:
- address
- address
vendor_ccs:
- [email protected]
- "[email protected]"
Loading