Skip to content

Commit ef5f15e

Browse files
authored
test
1 parent 4109045 commit ef5f15e

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

scripts/check_urls.sh

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,32 @@
55
# This source code is licensed under the BSD-style license found in the
66
# LICENSE file in the root directory of this source tree.
77

8+
set -x
9+
10+
url="https://www.cadence.com/en_US/home.html"
11+
request_id=$(curl -sS -H 'Accept: application/json' \
12+
"https://check-host.net/check-http?host=$url&max_nodes=1&node=us3.node.check-host.net" \
13+
| jq -r .request_id)
14+
curl -sS -H 'Accept: application/json' "https://check-host.net/check-result/$request_id"
15+
16+
url="https://www.cadence.com/en_US/home/tools/ip/tensilica-ip/hifi-dsps/hifi-4.html"
17+
request_id=$(curl -sS -H 'Accept: application/json' \
18+
"https://check-host.net/check-http?host=$url&max_nodes=1&node=us3.node.check-host.net" \
19+
| jq -r .request_id)
20+
curl -sS -H 'Accept: application/json' "https://check-host.net/check-result/$request_id"
21+
22+
url="https://wiki.mozilla.org/Abstract_Interpretation"
23+
request_id=$(curl -sS -H 'Accept: application/json' \
24+
"https://check-host.net/check-http?host=$url&max_nodes=1&node=us3.node.check-host.net" \
25+
| jq -r .request_id)
26+
curl -sS -H 'Accept: application/json' "https://check-host.net/check-result/$request_id"
27+
28+
url="https://mvnrepository.com/artifact/org.pytorch/executorch-android"
29+
request_id=$(curl -sS -H 'Accept: application/json' \
30+
"https://check-host.net/check-http?host=$url&max_nodes=1&node=us3.node.check-host.net" \
31+
| jq -r .request_id)
32+
curl -sS -H 'Accept: application/json' "https://check-host.net/check-result/$request_id"
33+
834
set -euo pipefail
935

1036
status=0

0 commit comments

Comments
 (0)