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

[CI] Skip link checks which are blocked #3946

Closed
wants to merge 1 commit into from
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,6 @@ Currently just substitute 'presto' with 'trino' or vice versa.

### Trino

Fork of PrestoSQL (hence still having 'presto' name in several parameters).

Install at least the 0.6.2 version of pyhive from https://github.com/gethue/PyHive or https://github.com/dropbox/PyHive

./build/env/bin/pip install pyhive
Expand Down Expand Up @@ -1008,7 +1006,7 @@ Hue's filebrowser can now allow users to explore, manage, and upload data in an

Read more about it in the [S3 User Documentation](/user/browsing#s3).

In order to add an S3 account to Hue, you'll need to configure Hue with valid S3 credentials, including the access key ID and secret access key: [AWSCredentials](http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSGettingStartedGuide/AWSCredentials.html)
In order to add an S3 account to Hue, you'll need to configure Hue with valid S3 credentials, including the access key ID and secret access key: [AWSCredentials](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSGettingStartedGuide/AWSCredentials.html)

These keys can securely stored in a script that outputs the actual access key and secret key to stdout to be read by Hue (this is similar to how Hue reads password scripts). In order to use script files, add the following section to your hue.ini configuration file:

Expand Down
8 changes: 5 additions & 3 deletions tools/ci/check_for_website_dead_links.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,13 @@ if [ "$?" -eq "0" ];

muffet http://localhost:1313/ \
--exclude "https://issues.cloudera.org*|http://localhost:8005|http://localhost:5555*|https://issues.apache.org/jira*|https://github.com*\
|http://demo.gethue.com*|https://twitter.com/gethue|https://github.com*|https://cdn.gethue.com/downloads/*|https://pypi.org*" \
|http://demo.gethue.com*|https://twitter.com/gethue|https://github.com*|https://cdn.gethue.com/downloads/*|https://pypi.org*\
|https://stackoverflow.com/questions/*|https://cdn.gethue.com/uploads/2021/02/peek-log-streams.gif\
|http://my.vertica.com/download/*|https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSGettingStartedGuide/AWSCredentials.html\
|https://docs.aws.amazon.com/emr/latest/ReleaseGuide/emr-hue.html" \
--ignore-fragments \
--timeout 15 \
--buffer-size 8192 \
--concurrency 10
--buffer-size 8192
LINT_EXIT_CODE=$?

kill $HUGO_PID
Expand Down
Loading