Skip to content

Commit

Permalink
Remove meta-inf github check
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-dheyman committed Oct 29, 2024
1 parent 1568ae9 commit 30f8da2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/scripts/check_content.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ if jar tvf $DIR/../../target/snowflake-jdbc${package_modifier}.jar | awk '{print
exit 1
fi

if jar tvf $DIR/../../target/snowflake-jdbc${package_modifier}.jar | awk '{print $8}' | grep -E "^META-INF/versions/.*.class" | grep -v -E "^META-INF/versions/.*/(net|com)/snowflake" | grep -v -E "^META-INF/versions/.*/com/github"; then
if jar tvf $DIR/../../target/snowflake-jdbc${package_modifier}.jar | awk '{print $8}' | grep -E "^META-INF/versions/.*.class" | grep -v -E "^META-INF/versions/.*/(net|com)/snowflake"; then
echo "[ERROR] JDBC jar includes multi-release classes not under the snowflake namespace"
exit 1
fi

0 comments on commit 30f8da2

Please sign in to comment.