Skip to content

Commit 5321c3f

Browse files
NotStirredCursedFlames
authored andcommitted
Don't run longRunTest twice in CI
1 parent 13ed6e9 commit 5321c3f

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/gradleBuild.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,12 @@ jobs:
2626
java-version: 17
2727

2828
- name: Build with Gradle
29-
run: ./gradlew build -x test
29+
run: ./gradlew build -x test -x longRunTest
3030
- name: Run tests
3131
run: ./gradlew check
3232

33-
- uses: actions/upload-artifact@v4
33+
- name: Upload compiled jars
34+
uses: actions/upload-artifact@v4
3435
with:
3536
name: compiled-jars
3637
path: build/libs/*.jar

.github/workflows/gradleBuildPR.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
java-version: 17
2525

2626
- name: Build with Gradle
27-
run: ./gradlew build -x test
27+
run: ./gradlew build -x test -x longRunTest
2828
- name: Run tests
2929
run: ./gradlew check
3030

0 commit comments

Comments
 (0)