Skip to content

Commit 40eaa11

Browse files
authored
Merge pull request #1450 from robstoll/deactivate-js-composite-build
deactivate JS composite build for samples
2 parents e36b7fc + 1a7aa87 commit 40eaa11

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

.github/workflows/build-ubuntu.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ jobs:
4545
run: ./gradlew build
4646
working-directory: misc/tools/atrium-samples-test
4747

48-
- name: composite build atrium-js-sample-test
49-
run: ./gradlew build
50-
working-directory: misc/tools/atrium-js-sample-test
48+
# TODO 1.2.0 activate again once we use JS IR
49+
# - name: composite build atrium-js-sample-test
50+
# run: ./gradlew build
51+
# working-directory: misc/tools/atrium-js-sample-test

.github/workflows/build-windows.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ jobs:
7272
run: ./gradlew build
7373
working-directory: misc\tools\atrium-samples-test
7474

75-
- name: composite build atrium-js-sample-test
76-
run: ./gradlew build
77-
working-directory: misc\tools\atrium-js-sample-test
75+
# TODO 1.2.0 activate again once we use JS IR
76+
# - name: composite build atrium-js-sample-test
77+
# run: ./gradlew build
78+
# working-directory: misc\tools\atrium-js-sample-test

misc/tools/atrium-samples-test/build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
val samples = listOf("junit5", "spek", "kotlin-test")
1+
//TODO 1.2.0 include kotlin-test again once we use IR for JS
2+
val samples = listOf("junit5", "spek") //, "kotlin-test")
23

34
tasks.register("build") {
45
samples.forEach { projectName ->

0 commit comments

Comments
 (0)