Skip to content
This repository has been archived by the owner on Jul 8, 2022. It is now read-only.

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
soywiz committed Dec 11, 2019
1 parent aa23ab8 commit dc6f54c
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 1 deletion.
33 changes: 33 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: CI

on: [push]

jobs:
build-windows:
runs-on: windows-2019
steps:
- uses: actions/checkout@v1
- run: CALL gradlew.bat --no-daemon assemble check localPublishToBintrayIfRequiredOnCiReleaseTagNoPR -x jsBrowserTest -x jsNodeTest
shell: cmd
env:
BINTRAY_USER: ${{ secrets.BINTRAY_USER }}
BINTRAY_KEY: ${{ secrets.BINTRAY_KEY }}

build-mac:
runs-on: macOS-10.14
steps:
- uses: actions/checkout@v1
- run: ./gradlew --no-daemon assemble check localPublishToBintrayIfRequiredOnTravisReleaseTagNoPR -x jsBrowserTest -x jsNodeTest
env:
BINTRAY_USER: ${{ secrets.BINTRAY_USER }}
BINTRAY_KEY: ${{ secrets.BINTRAY_KEY }}

build-linux:
needs: [build-windows, build-mac]
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- run: ./gradlew --no-daemon assemble check lint testDebugUnitTest localPublishToBintrayIfRequiredOnTravisReleaseTagNoPR actuallyPublishBintrayIfOnTravisReleaseTagNoPR -x jsBrowserTest -x jsNodeTest
env:
BINTRAY_USER: ${{ secrets.BINTRAY_USER }}
BINTRAY_KEY: ${{ secrets.BINTRAY_KEY }}
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ buildscript {
}

dependencies {
classpath "com.soywiz.korlibs:easy-kotlin-mpp-gradle-plugin:0.4.4" // Kotlin 1.3.60: https://github.com/korlibs/easy-kotlin-mpp-gradle-plugin
classpath "com.soywiz.korlibs:easy-kotlin-mpp-gradle-plugin:0.6.0" // Kotlin 1.3.61: https://github.com/korlibs/easy-kotlin-mpp-gradle-plugin
}
}

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit dc6f54c

Please sign in to comment.