From 3dcb9641abe8506a97c671e370b4ae0556f5a4c7 Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Sun, 22 Jan 2023 16:59:33 -0800 Subject: [PATCH] quic-go: update repo path to quic-go/quic-go (#9479) We recently moved the repo into its own org. See https://github.com/quic-go/quic-go/issues/3611 for motivation and tracking. --- projects/quic-go/Dockerfile | 2 +- projects/quic-go/build.sh | 10 +++++----- projects/quic-go/project.yaml | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/projects/quic-go/Dockerfile b/projects/quic-go/Dockerfile index ebc07a080..11cfc239a 100644 --- a/projects/quic-go/Dockerfile +++ b/projects/quic-go/Dockerfile @@ -20,7 +20,7 @@ RUN git clone --depth 1 https://github.com/quic-go/qpack/ && \ cd qpack && \ go build -RUN git clone --depth 1 https://github.com/lucas-clemente/quic-go/ && \ +RUN git clone --depth 1 https://github.com/quic-go/quic-go/ && \ cd quic-go && \ go build diff --git a/projects/quic-go/build.sh b/projects/quic-go/build.sh index f0dc21173..f6a864351 100644 --- a/projects/quic-go/build.sh +++ b/projects/quic-go/build.sh @@ -26,11 +26,11 @@ compile_go_fuzzer github.com/quic-go/qpack/fuzzing Fuzz qpack_fuzzer ( cd quic-go # Fuzz quic-go -compile_go_fuzzer github.com/lucas-clemente/quic-go/fuzzing/frames Fuzz frame_fuzzer -compile_go_fuzzer github.com/lucas-clemente/quic-go/fuzzing/header Fuzz header_fuzzer -compile_go_fuzzer github.com/lucas-clemente/quic-go/fuzzing/transportparameters Fuzz transportparameter_fuzzer -compile_go_fuzzer github.com/lucas-clemente/quic-go/fuzzing/tokens Fuzz token_fuzzer -compile_go_fuzzer github.com/lucas-clemente/quic-go/fuzzing/handshake Fuzz handshake_fuzzer +compile_go_fuzzer github.com/quic-go/quic-go/fuzzing/frames Fuzz frame_fuzzer +compile_go_fuzzer github.com/quic-go/quic-go/fuzzing/header Fuzz header_fuzzer +compile_go_fuzzer github.com/quic-go/quic-go/fuzzing/transportparameters Fuzz transportparameter_fuzzer +compile_go_fuzzer github.com/quic-go/quic-go/fuzzing/tokens Fuzz token_fuzzer +compile_go_fuzzer github.com/quic-go/quic-go/fuzzing/handshake Fuzz handshake_fuzzer if [ $SANITIZER == "coverage" ]; then # no need for corpuses if coverage diff --git a/projects/quic-go/project.yaml b/projects/quic-go/project.yaml index 445b3d2f2..d629077b3 100644 --- a/projects/quic-go/project.yaml +++ b/projects/quic-go/project.yaml @@ -1,8 +1,8 @@ -homepage: "https://github.com/lucas-clemente/quic-go" +homepage: "https://github.com/quic-go/quic-go" primary_contact: "martenseemann@gmail.com" language: go fuzzing_engines: - libfuzzer sanitizers: - address -main_repo: 'https://github.com/lucas-clemente/quic-go' +main_repo: 'https://github.com/quic-go/quic-go'