Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 29 additions & 2 deletions .drone.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
kind: pipeline
name: default
steps:
- name: build
image: tindzk/seed:0.1.4
- name: test
image: tindzk/seed:0.1.6-15-gac088b5
commands:
- apk add --no-cache yarn
- yarn add jsdom
Expand All @@ -18,3 +18,30 @@ steps:
- rm -rf .bloop build
- seed --build=build213.toml bloop
- bloop test pine-jvm pine-js
- name: publish_prerelease
image: tindzk/seed:0.1.6-15-gac088b5
commands:
- apk add --no-cache git
- git fetch --tags
- blp-server &
- seed --build=build211.toml bloop
- seed publish --build=build211.toml bintray:tindzk/maven2/experiments2 pine:native pine:js pine:jvm
- sleep 5
- rm -rf .bloop build
- seed --build=build212.toml bloop
- seed publish --build=build212.toml bintray:tindzk/maven2/experiments2 pine:js pine:jvm
- sleep 5
- rm -rf .bloop build
- seed --build=build213.toml bloop
- seed publish --build=build213.toml bintray:tindzk/maven2/experiments2 pine:js pine:jvm
environment:
BINTRAY_USER:
from_secret: bintray_user
BINTRAY_API_KEY:
from_secret: bintray_api_key
when:
branch:
- master
- feat/publish # TODO remove
event:
- push
6 changes: 6 additions & 0 deletions build211.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
[package]
url = "https://github.com/sparsetech/pine/"
name = "pine"
organisation = "tech.sparse"
developers = [["tindzk", "Tim Nieradzik", "[email protected]"]]

[project]
scalaVersion = "2.11.11-bin-typelevel-4"
scalaJsVersion = "0.6.28"
Expand Down
6 changes: 6 additions & 0 deletions build212.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
[package]
url = "https://github.com/sparsetech/pine/"
name = "pine"
organisation = "tech.sparse"
developers = [["tindzk", "Tim Nieradzik", "[email protected]"]]

[project]
scalaVersion = "2.12.4-bin-typelevel-4"
scalaJsVersion = "0.6.28"
Expand Down
6 changes: 6 additions & 0 deletions build213.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
[package]
url = "https://github.com/sparsetech/pine/"
name = "pine"
organisation = "tech.sparse"
developers = [["tindzk", "Tim Nieradzik", "[email protected]"]]

[project]
scalaVersion = "2.13.0"
scalaJsVersion = "0.6.28"
Expand Down