Skip to content

Commit 373b92e

Browse files
committed
test scala#247
1 parent 820016f commit 373b92e

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Release
22
on:
33
push:
4-
tags: ["*"]
4+
# tags: ["*"]
55
jobs:
66
publish:
77
runs-on: ubuntu-latest

build.sbt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,13 @@ lazy val scalaJava8Compat = (project in file("."))
175175
organization.value.replace('.', '/') /
176176
base / v
177177
Process(s"unzip -o $name", wd).!.ensuring(_ == 0)
178+
179+
val src = (Compile / managedSourceDirectories).value.head / "FunctionConverters.scala"
180+
println()
181+
println(src)
182+
println(IO.read(src))
183+
println("------\n")
184+
178185
val javap = Process(s"javap -c -v scala.compat.java8.Priority1FunctionConverters", wd).!!
179186
println("\n++++javap++++")
180187
println(javap)

0 commit comments

Comments
 (0)