Skip to content

Commit 497cfec

Browse files
committed
Update CI config
1 parent 7bfb790 commit 497cfec

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed

.github/workflows/publish-release.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,15 @@ jobs:
4141
uses: gradle/actions/setup-gradle@v3
4242
with:
4343
gradle-version: ${{ env.GRADLE_VERSION }}
44+
arguments: |
45+
assemble
46+
allTests
47+
--stacktrace
48+
--warning-mode all
49+
-Pkotlin.native.enableKlibsCrossCompilation=false
4450
45-
- name: Run all tests
46-
run: gradle assemble allTests --stacktrace --warning-mode all
51+
# - name: Run all tests
52+
# run: gradle assemble allTests --stacktrace --warning-mode all -Pkotlin.native.enableKlibsCrossCompilation=false
4753

4854
publish-releases:
4955
name: Publish releases

.github/workflows/publish-snapshot.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,15 @@ jobs:
6262
uses: gradle/actions/setup-gradle@v3
6363
with:
6464
gradle-version: ${{ env.GRADLE_VERSION }}
65+
arguments: |
66+
assemble
67+
allTests
68+
--stacktrace
69+
--warning-mode all
70+
-Pkotlin.native.enableKlibsCrossCompilation=false
6571
66-
- name: Run all tests
67-
run: gradle assemble allTests --stacktrace --warning-mode all
72+
# - name: Run all tests
73+
# run: gradle assemble allTests --stacktrace --warning-mode all -Pkotlin.native.enableKlibsCrossCompilation=false
6874

6975
publish-snapshots:
7076
name: Publish snapshots

0 commit comments

Comments
 (0)