Skip to content
This repository was archived by the owner on Mar 8, 2020. It is now read-only.

Commit 7c9d362

Browse files
committed
ci: move verbose ouput
Signed-off-by: Alexander Bezzubov <[email protected]>
1 parent 2c05d07 commit 7c9d362

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

build.sbt

+5-1
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,8 @@ getProtoFiles := {
105105
s"cp ${unzip_dir}/protocol/driver.proto ${sdkProto}/protocol/" #&&
106106
s"cp ${unzip_dir}/uast/role/generated.proto ${sdkProto}/uast/role" #&&
107107
s"rm -rf ${unzip_dir}" !
108+
109+
println("Done unpacking SDK")
108110
}
109111

110112
val getLibuast = TaskKey[Unit]("getLibuast", "Retrieve libuast")
@@ -119,11 +121,13 @@ getLibuast := {
119121
s"curl -sL ${binaryReleaseUrl} -o libuast-bin.tar.gz" #&&
120122
"tar xzf libuast-bin.tar.gz" #&&
121123
s"mv ${os}-amd64 libuast" #&&
124+
"mkdir -p src/main/resources" #&&
122125
"rm -rf src/main/resources/libuast" #&&
123126
"mv libuast src/main/resources" #&&
124127
"rm src/main/resources/libuast/libuast.so" #&& // always a static build
125-
"rm -rf libuast" #&&
126128
"rm libuast-bin.tar.gz" !
129+
130+
println("Done unpacking libuast")
127131
}
128132

129133
val compileScalaLibuast = TaskKey[Unit]("compileScalaLibuast", "Compile libScalaUast JNI library")

0 commit comments

Comments
 (0)