Skip to content

Upgrade ASM to 6.0, fix bug with very large methods #3499

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 2 commits into from
Nov 19, 2017
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 @@ -15,37 +15,37 @@ pipeline:
# We run tests in parallel. Tests run in a copy of the working directory to avoid conflict
test_legacy:
group: test
image: lampepfl/dotty:2017-10-20
image: lampepfl/dotty:2017-11-17
commands:
- cp -R . /tmp/0/ && cd /tmp/0/
- ./project/scripts/sbt legacyTests

test:
group: test
image: lampepfl/dotty:2017-10-20
image: lampepfl/dotty:2017-11-17
commands:
- cp -R . /tmp/1/ && cd /tmp/1/
- ./project/scripts/sbt ";compile ;testAll"
- ./project/scripts/sbtTests

test_bootstrapped:
group: test
image: lampepfl/dotty:2017-10-20
image: lampepfl/dotty:2017-11-17
commands:
- cp -R . /tmp/2/ && cd /tmp/2/
- ./project/scripts/sbt ";dotty-bootstrapped/compile ;dotty-bootstrapped/testAll"
- ./project/scripts/sbtBootstrappedTests

test_optimised:
group: test
image: lampepfl/dotty:2017-10-20
image: lampepfl/dotty:2017-11-17
commands:
- cp -R . /tmp/3/ && cd /tmp/3/
- ./project/scripts/sbt dotty-optimised/testAll

test_sbt:
group: test
image: lampepfl/dotty:2017-10-20
image: lampepfl/dotty:2017-11-17
commands:
- cp -R . /tmp/4/ && cd /tmp/4/
- ./project/scripts/sbt sbt-dotty/scripted
Expand All @@ -55,7 +55,7 @@ pipeline:

# DOCUMENTATION:
documentation:
image: lampepfl/dotty:2017-10-20
image: lampepfl/dotty:2017-11-17
commands:
- ./project/scripts/genDocs
secrets: [ bot_pass ]
Expand All @@ -67,7 +67,7 @@ pipeline:
# PUBLISHING:
# Publishing expect NIGHTLYBUILD or RELEASEBUILD to be set. See dottyVersion in Build.scala
publish_nightly:
image: lampepfl/dotty:2017-10-20
image: lampepfl/dotty:2017-11-17
environment:
- NIGHTLYBUILD=yes
commands:
Expand All @@ -80,7 +80,7 @@ pipeline:
environment: nightly

publish_release:
image: lampepfl/dotty:2017-10-20
image: lampepfl/dotty:2017-11-17
environment:
- RELEASEBUILD=yes
commands:
Expand All @@ -106,7 +106,7 @@ pipeline:
event: tag

publish_sbt_release:
image: lampepfl/dotty:2017-10-20
image: lampepfl/dotty:2017-11-17
environment:
- RELEASEBUILD=yes
commands:
Expand Down
2 changes: 1 addition & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ object Build {
}.taskValue,

// Used by the backend
libraryDependencies += "org.scala-lang.modules" % "scala-asm" % "5.2.0-scala-2",
libraryDependencies += "org.scala-lang.modules" % "scala-asm" % "6.0.0-scala-1",

// set system in/out for repl
connectInput in run := true,
Expand Down
Loading