Skip to content

Commit af7a29b

Browse files
committed
Remove test-module job
1 parent 64296e7 commit af7a29b

File tree

1 file changed

+1
-33
lines changed

1 file changed

+1
-33
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -69,38 +69,6 @@ jobs:
6969
name: reports
7070
path: ./**/target/surefire-reports
7171

72-
test-module:
73-
if: contains(github.event.head_commit.message, '[skip ci]') == false
74-
runs-on: ubuntu-latest
75-
timeout-minutes: 30
76-
needs: [ test ]
77-
78-
steps:
79-
- uses: actions/checkout@v2
80-
81-
- name: Set up JDK 11
82-
uses: actions/setup-java@v2
83-
with:
84-
distribution: zulu
85-
java-version: 11
86-
cache: maven
87-
88-
- name: Grant execute permission for mvnw
89-
run: chmod +x mvnw
90-
91-
- name: Copy module-info.java
92-
run: cp doma-spring-boot-core/src/module/java/module-info.java doma-spring-boot-core/src/main/java/ && cp doma-spring-boot-autoconfigure/src/module/java/module-info.java doma-spring-boot-autoconfigure/src/main/java/
93-
94-
- name: Test with Maven
95-
run: ./mvnw test -B -pl doma-spring-boot-core,doma-spring-boot-autoconfigure -Dmaven.compiler.source=11 -Dmaven.compiler.target=11
96-
97-
- name: Upload reports
98-
if: failure()
99-
uses: actions/upload-artifact@v2
100-
with:
101-
name: reports
102-
path: ./**/target/surefire-reports
103-
10472
test-slf4j-backward-compatible:
10573
if: contains(github.event.head_commit.message, '[skip ci]') == false
10674
runs-on: ubuntu-latest
@@ -133,7 +101,7 @@ jobs:
133101
deploy:
134102
if: github.event_name == 'push' && contains(github.event.head_commit.message, '[skip ci]') == false
135103
runs-on: ubuntu-latest
136-
needs: [ test-matrix, test-module, test-slf4j-backward-compatible ]
104+
needs: [ test-matrix, test-slf4j-backward-compatible ]
137105

138106
steps:
139107
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)