Skip to content

Commit

Permalink
ARROW-17616: [CI][Java] Solving regex to support last Arrow Java vers…
Browse files Browse the repository at this point in the history
…ions >= 10.0.0 (#14076)

Solving regex to support last Arrow Java versions >= 10.0.0

Authored-by: david dali susanibar arce <davi.sarces@gmail.com>
Signed-off-by: Sutou Kouhei <kou@clear-code.com>
  • Loading branch information
davisusanibar committed Sep 12, 2022
1 parent a63e60b commit f42f3df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/java_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:
if [ -z $PREFIX ]; then
PREFIX=nightly-packaging-$(date +%Y-%m-%d)-0
fi
PATTERN_TO_GET_LIB_AND_VERSION='([a-z].+)-([0-9].[0-9].[0-9].dev[0-9]+)'
PATTERN_TO_GET_LIB_AND_VERSION='([a-z].+)-([0-9]+.[0-9]+.[0-9]+.dev[0-9]+)'
mkdir -p repo/org/apache/arrow/
for LIBRARY in $(ls binaries/$PREFIX/java-jars | grep -E '.jar|.pom' | grep dev); do
[[ $LIBRARY =~ $PATTERN_TO_GET_LIB_AND_VERSION ]]
Expand Down

0 comments on commit f42f3df

Please sign in to comment.