ndimiduk commented on code in PR #311: URL: https://github.com/apache/yetus/pull/311#discussion_r1318260904
########## .linkcheckerrc: ########## @@ -0,0 +1,26 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +[filtering] +ignore= + http://localhost:8123/documentation/[0-9]+.[0-9]+.[0-9]+ Review Comment: Why this ignore line? We don't want to check broken links on built documentation? ########## asf-site-src/pom.xml: ########## @@ -84,7 +84,6 @@ </goals> <configuration> <executable>${rdm.bin}</executable> - <requiresOnline>true</requiresOnline> Review Comment: oh why were these here in the first place? ########## precommit/src/main/shell/test-patch-docker/Dockerfile: ########## @@ -149,16 +149,22 @@ FROM yetusbase AS yetushadolint ARG HADOLINT_VERSION=2.12.0 SHELL ["/bin/bash", "-o", "pipefail", "-c"] RUN if [[ "$(uname -m)" == "x86_64" ]]; then curl -sSL \ - https://github.com/hadolint/hadolint/releases/download/v$HADOLINT_VERSION/hadolint-Linux-"$(uname -m)" \ + https://github.com/hadolint/hadolint/releases/download/v$HADOLINT_VERSION/hadolint-Linux-x86_64 \ Review Comment: I still prefer the style I proposed in my patch because docker can cache the downloaded artifacts between runs. The layer caching speeds up rebuild cycles drastically. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: gitbox-unsubscr...@yetus.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org