Gitlab ci setup (#17)

* Test pull request on gitlab ci

* Gitlab ci continued, bumped kotlin to 1.4.10

* print env

* Update readme and lets try to trigger only on master

* Master, pull requests and tags
This commit is contained in:
Ugljesa Jovanovic 2020-10-04 20:07:18 +00:00 committed by GitHub
parent 4200197d1b
commit 1a470eb272
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 23 additions and 4 deletions

View File

@ -1,2 +1,20 @@
build:
script: echo TEST
workflow:
rules:
- if: $CI_MERGE_REQUEST_IID
- if: $CI_COMMIT_TAG
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
buildLinux:
script:
- echo TEST_PULL_REQUEST_LINUX
- env
tags:
- linuxX64
buildMac:
script: echo TEST_PULL_REQUEST_MAC
tags:
- macos
buildWindows:
script: echo TEST_PULL_REQUEST_WIN
tags:
- windowsX64

View File

@ -1,4 +1,5 @@
[![Build Status](https://travis-ci.com/ionspin/kotlin-multiplatform-crypto.svg?branch=master)](https://travis-ci.com/ionspin/kotlin-multiplatform-crypto)
[![pipeline status](https://gitlab.com/ionspin-github-ci/kotlin-multiplatform-crypto-ci/badges/master/pipeline.svg)](https://gitlab.com/ionspin-github-ci/kotlin-multiplatform-crypto-ci/-/commits/master)
![Danger: Experimental](https://camo.githubusercontent.com/275bc882f21b154b5537b9c123a171a30de9e6aa/68747470733a2f2f7261772e6769746875622e636f6d2f63727970746f7370686572652f63727970746f7370686572652f6d61737465722f696d616765732f6578706572696d656e74616c2e706e67)

View File

@ -16,7 +16,7 @@
object Versions {
val kotlinCoroutines = "1.3.9"
val kotlin = "1.4.0"
val kotlin = "1.4.10"
val kotlinSerialization = "1.0.0-RC"
val atomicfu = "0.14.3-M2-2-SNAPSHOT" //NOTE: my linux arm32 and arm64 build
val nodePlugin = "1.3.0"