Skip to content

Commit e0b4dcd

Browse files
committed
[ECO-5338] Updated CI scripts to run liveobject plugin tests
1. Updated separate gradlew task for both unit and integration tests 2. Updated check.yml and integration-test.yml file to run respective tests
1 parent c444220 commit e0b4dcd

2 files changed

Lines changed: 19 additions & 1 deletion

File tree

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ jobs:
1919
distribution: 'temurin'
2020
- name: Set up Gradle
2121
uses: gradle/actions/setup-gradle@v3
22-
- run: ./gradlew checkWithCodenarc checkstyleMain checkstyleTest runUnitTests
22+
- run: ./gradlew checkWithCodenarc checkstyleMain checkstyleTest runUnitTests runLiveObjectUnitTests

.github/workflows/integration-test.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,3 +90,21 @@ jobs:
9090
uses: gradle/actions/setup-gradle@v3
9191

9292
- run: ./gradlew :java:testRealtimeSuite -Pokhttp
93+
94+
check-liveobjects:
95+
runs-on: ubuntu-latest
96+
steps:
97+
- uses: actions/checkout@v4
98+
with:
99+
submodules: 'recursive'
100+
101+
- name: Set up the JDK
102+
uses: actions/setup-java@v4
103+
with:
104+
java-version: '17'
105+
distribution: 'temurin'
106+
107+
- name: Set up Gradle
108+
uses: gradle/actions/setup-gradle@v3
109+
110+
- run: ./gradlew runLiveObjectIntegrationTests

0 commit comments

Comments
 (0)