Changes for upcoming GSL extension project #148

Merged
CommanderTvis merged 98 commits from gsl-experiment into dev 2021-02-19 13:34:27 +03:00
2 changed files with 14 additions and 7 deletions
Showing only changes of commit 6f3deb6a24 - Show all commits

View File

@ -18,8 +18,8 @@ jobs:
uses: actions/cache@v2
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
**/.gradle
**/build
key: gradle_6_6_1
restore-keys: gradle_6_6_1
@ -32,7 +32,7 @@ jobs:
key: ${{ runner.os }}-konan-1.4.20-eap-37
restore-keys: ${{ runner.os }}-konan-1.4.20-eap-37
- name: Build with Gradle
run: ./gradlew -Dorg.gradle.daemon=false --build-cache :kmath-gsl:cinteropLibgslNative build
run: sudo ./gradlew -Dorg.gradle.daemon=false --build-cache :kmath-gsl:cinteropLibgslNative build
build-osx:
runs-on: macos-latest
@ -48,8 +48,8 @@ jobs:
uses: actions/cache@v2
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
**/.gradle
**/build
key: gradle_6_6_1
restore-keys: gradle_6_6_1
@ -79,8 +79,8 @@ jobs:
uses: actions/cache@v2
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
**/.gradle
**/build
key: gradle_6_6_1
restore-keys: gradle_6_6_1

View File

@ -1,6 +1,13 @@
plugins { id("ru.mipt.npm.mpp") }
kotlin.sourceSets {
all {
with(languageSettings) {
useExperimentalAnnotation("kotlinx.coroutines.FlowPreview")
useExperimentalAnnotation("kotlinx.coroutines.ExperimentalCoroutinesApi")
}
}
commonMain {
dependencies {
api(project(":kmath-coroutines"))