Skip to content

Commit 6948842

Browse files
committed
Remove CI check
1 parent 056ac56 commit 6948842

File tree

2 files changed

+2
-22
lines changed

2 files changed

+2
-22
lines changed

scripts/circleci/check_license.sh

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,4 @@
22

33
set -e
44

5-
# Make sure we don't introduce accidental references to PATENTS.
6-
EXPECTED='scripts/circleci/check_license.sh'
7-
ACTUAL=$(git grep -l PATENTS)
8-
9-
if [ "$EXPECTED" != "$ACTUAL" ]; then
10-
echo "PATENTS crept into some new files?"
11-
diff -u <(echo "$EXPECTED") <(echo "$ACTUAL") || true
12-
exit 1
13-
fi
5+
# This doesn't make sense on the old majors branch.

scripts/circleci/check_modules.sh

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,4 @@
22

33
set -e
44

5-
# Make sure we don't introduce accidental @providesModule annotations.
6-
EXPECTED='scripts/rollup/wrappers.js'
7-
ACTUAL=$(git grep -l @providesModule -- './*.js' ':!scripts/rollup/shims/*.js')
8-
9-
# Colors
10-
red=$'\e[1;31m'
11-
end=$'\e[0m'
12-
13-
if [ "$EXPECTED" != "$ACTUAL" ]; then
14-
printf "%s\n" "${red}ERROR: @providesModule crept into some new files?${end}"
15-
diff -u <(echo "$EXPECTED") <(echo "$ACTUAL") || true
16-
exit 1
17-
fi
5+
# This doesn't make sense for old builds.

0 commit comments

Comments
 (0)