File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -45,12 +45,24 @@ jobs:
45
45
${{ runner.os }}-m2
46
46
- name : Chmod
47
47
run : chmod +x mvnw
48
+ - name : Build fastexcel-support
49
+ run : ./mvnw -pl fastexcel-support install -B -V
50
+ - name : Check CGLIB in JAR
51
+ run : |
52
+ jar -xf fastexcel-support/target/fastexcel-support-*.jar
53
+ if [ -d "cn/idev/excel/support/cglib" ]; then
54
+ echo "CGLIB directory exists in the JAR."
55
+ else
56
+ echo "CGLIB directory does not exist in the JAR."
57
+ exit 1
58
+ fi
48
59
- name : Test with Maven
49
60
if : ${{ matrix.java == '8' }}
50
61
run : ./mvnw test -B -Dmaven.test.skip=false
51
62
- name : Test with Maven
52
63
if : ${{ matrix.java != '8' }}
53
64
run : ./mvnw test -B -Dmaven.test.skip=false -DargLine="--add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/sun.reflect.annotation=ALL-UNNAMED"
65
+
54
66
- name : Maven Build
55
67
run : ./mvnw install -B -V
56
68
- name : Java Doc
You can’t perform that action at this time.
0 commit comments