Skip to content

WIP: Update CI cache to include Scala.js artifacts #8071

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 22, 2020
Merged
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
18 changes: 9 additions & 9 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ steps:

- name: test
pull: default
image: lampepfl/dotty:2020-01-09
image: lampepfl/dotty:2020-01-22-2
depends_on: [ clone ]
commands:
- cp -R . /tmp/1/ && cd /tmp/1/
Expand All @@ -36,7 +36,7 @@ steps:

- name: test_bootstrapped
pull: default
image: lampepfl/dotty:2020-01-09
image: lampepfl/dotty:2020-01-22-2
depends_on: [ clone ]
commands:
- cp -R . /tmp/2/ && cd /tmp/2/
Expand All @@ -45,7 +45,7 @@ steps:

- name: community_build
pull: default
image: lampepfl/dotty:2020-01-09
image: lampepfl/dotty:2020-01-22-2
depends_on: [ clone ]
commands:
- cp -R . /tmp/3/ && cd /tmp/3/
Expand All @@ -55,7 +55,7 @@ steps:

- name: test_sbt
pull: default
image: lampepfl/dotty:2020-01-09
image: lampepfl/dotty:2020-01-22-2
depends_on: [ clone ]
commands:
- cp -R . /tmp/4/ && cd /tmp/4/
Expand All @@ -67,7 +67,7 @@ steps:

- name: test_java11
pull: default
image: lampepfl/dotty:2020-01-09
image: lampepfl/dotty:2020-01-22-2
depends_on: [ clone ]
commands:
- export PATH="/usr/lib/jvm/java-11-openjdk-amd64/bin:$PATH"
Expand All @@ -80,7 +80,7 @@ steps:

- name: documentation
pull: default
image: lampepfl/dotty:2020-01-09
image: lampepfl/dotty:2020-01-22-2
depends_on:
- test
- test_bootstrapped
Expand All @@ -99,7 +99,7 @@ steps:

- name: publish_nightly
pull: default
image: lampepfl/dotty:2020-01-09
image: lampepfl/dotty:2020-01-22-2
depends_on:
- test
- test_bootstrapped
Expand All @@ -126,7 +126,7 @@ steps:

- name: publish_release
pull: default
image: lampepfl/dotty:2020-01-09
image: lampepfl/dotty:2020-01-22-2
depends_on:
- test
- test_bootstrapped
Expand Down Expand Up @@ -169,7 +169,7 @@ steps:

- name: publish_sbt_release
pull: default
image: lampepfl/dotty:2020-01-09
image: lampepfl/dotty:2020-01-22-2
depends_on:
- test
- test_bootstrapped
Expand Down
3 changes: 3 additions & 0 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
//
// e.g. addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.1.0")

// DO NOT update this plugin without regenerating our Docker
// image (https://github.com/lampepfl/dotty-drone) or fixing
// https://github.com/lampepfl/dotty/issues/3146.
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.0.0-RC2")

addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.6")
Expand Down