Kotlin 1.4.0-rc (#10)

* Move to kotlin 1.4.0-rc

* Removing broken WSL bash

see https://github.com/actions/virtual-environments/issues/50

Co-authored-by: Salomon BRYS <salomon@kodein.net>
This commit is contained in:
Romain Boisselle 2020-08-02 20:08:02 +02:00 committed by GitHub
parent dbf8301f34
commit 2615187b87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 11 additions and 5 deletions

View File

@ -37,7 +37,9 @@ jobs:
run: brew install automake run: brew install automake
- name: Set up shell - name: Set up shell
if: matrix.os == 'windows-latest' if: matrix.os == 'windows-latest'
run: echo ::add-path::C:\msys64\usr\bin\ run: |
echo ::add-path::C:\msys64\usr\bin\
rm.exe "C:/WINDOWS/system32/bash.EXE"
- name: Check JVM - name: Check JVM
shell: bash shell: bash
run: ./gradlew jvmTest run: ./gradlew jvmTest

View File

@ -45,7 +45,9 @@ jobs:
run: brew install automake run: brew install automake
- name: Set up shell - name: Set up shell
if: matrix.os == 'windows-latest' if: matrix.os == 'windows-latest'
run: echo ::add-path::C:\msys64\usr\bin\ run: |
echo ::add-path::C:\msys64\usr\bin\
rm.exe "C:/WINDOWS/system32/bash.EXE"
- name: Check JVM - name: Check JVM
shell: bash shell: bash
run: ./gradlew jvmTest run: ./gradlew jvmTest

View File

@ -51,7 +51,9 @@ jobs:
run: brew install automake run: brew install automake
- name: Set up shell - name: Set up shell
if: matrix.os == 'windows-latest' if: matrix.os == 'windows-latest'
run: echo ::add-path::C:\msys64\usr\bin\ run: |
echo ::add-path::C:\msys64\usr\bin\
rm.exe "C:/WINDOWS/system32/bash.EXE"
- name: Check JVM - name: Check JVM
shell: bash shell: bash
run: ./gradlew jvmTest run: ./gradlew jvmTest

View File

@ -6,7 +6,7 @@ import org.apache.http.impl.auth.BasicScheme
import org.apache.http.auth.UsernamePasswordCredentials import org.apache.http.auth.UsernamePasswordCredentials
plugins { plugins {
kotlin("multiplatform") version "1.4-M3" kotlin("multiplatform") version "1.4.0-rc"
`maven-publish` `maven-publish`
} }
@ -24,7 +24,7 @@ buildscript {
allprojects { allprojects {
group = "fr.acinq.secp256k1" group = "fr.acinq.secp256k1"
version = "0.3.0-1.4-M3" version = "0.3.0-1.4-rc"
repositories { repositories {
jcenter() jcenter()