-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #175 from fraktalio/feature/publish-more-targets
Publish multiple (native) targets
- Loading branch information
Showing
8 changed files
with
101 additions
and
178 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ jobs: | |
|
||
strategy: | ||
matrix: | ||
os: [ 'macos-latest', 'ubuntu-latest', 'windows-latest' ] | ||
os: [ 'macos-11', 'ubuntu-latest', 'windows-latest' ] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
@@ -33,19 +33,19 @@ jobs: | |
java-version: '17' | ||
check-latest: true | ||
|
||
- name: Publish JVM, JS and Linux versions | ||
- name: Publish JVM, JS and MacOS versions | ||
uses: gradle/[email protected] | ||
if: matrix.os == 'ubuntu-latest' | ||
if: matrix.os == 'macos-11' | ||
with: | ||
cache-disabled: true | ||
arguments: --full-stacktrace test publishAllPublicationToOssrhRepository | ||
|
||
- name: Publish MacOS version | ||
- name: Publish Linux version | ||
uses: gradle/[email protected] | ||
if: matrix.os == 'macos-latest' | ||
if: matrix.os == 'ubuntu-latest' | ||
with: | ||
cache-disabled: true | ||
arguments: --full-stacktrace macosX64Test publishMacosX64PublicationToOssrhRepository | ||
arguments: --full-stacktrace linuxX64Test publishLinuxX64PublicationToOssrhRepository | ||
|
||
- name: Publish Windows version | ||
uses: gradle/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ jobs: | |
|
||
strategy: | ||
matrix: | ||
os: [ 'macos-latest', 'ubuntu-latest', 'windows-latest' ] | ||
os: [ 'macos-11', 'ubuntu-latest', 'windows-latest' ] | ||
|
||
steps: | ||
- name: Checkout | ||
|
@@ -29,17 +29,17 @@ jobs: | |
distribution: 'adopt' | ||
java-version: '17' | ||
|
||
- name: Test (linux, jvm, js) | ||
- name: Test (macos, jvm, js) | ||
uses: gradle/[email protected] | ||
if: matrix.os == 'ubuntu-latest' | ||
if: matrix.os == 'macos-11' | ||
with: | ||
arguments: --full-stacktrace build | ||
|
||
- name: Test (macos) | ||
- name: Test (linux) | ||
uses: gradle/[email protected] | ||
if: matrix.os == 'macos-latest' | ||
if: matrix.os == 'ubuntu-latest' | ||
with: | ||
arguments: --full-stacktrace macosX64Test | ||
arguments: --full-stacktrace linuxX64Test | ||
|
||
- name: Test (windows) | ||
uses: gradle/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
kotlin.code.style=official | ||
kotlin.js.generate.executable.default=false | ||
kotlin.mpp.stability.nowarn=true | ||
#kotlin.native.ignoreDisabledTargets=true | ||
kotlin.incremental=true | ||
# Kotlin Test configuration | ||
kotest.framework.parallelism=1 | ||
org.gradle.jvmargs=-Xmx1024m |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters