Buck构建失败的"事件日志"Gerrit插件(jar)

1 gerrit buck

我正在尝试通过Buck构建构建Gerrit插件"events-log"jar(https://gerrit.googlesource.com/plugins/events-log),但是它失败并出现以下错误:

root@jenkins-test:~/events-log# ll
drwxr-xr-x  7 root root 4096 Jun 29 13:25 ./
drwxrwxr-x 24 root root 4096 Jun 29 13:22 ../
-rw-r--r--  1 root root 1017 Jun 29 12:57 BUCK
-rw-r--r--  1 root root  173 Jun 29 12:57 .buckconfig
drwxr-xr-x  3 root root 4096 Jun 29 13:25 .buckd/
drwxr-xr-x  6 root root 4096 Jun 29 13:05 buck-out/
drwxr-xr-x  8 root root 4096 Jun 29 13:27 .git/
-rw-r--r--  1 root root  146 Jun 29 12:57 .gitignore
drwxr-xr-x  5 root root 4096 Jun 29 12:57 lib/
drwxr-xr-x  4 root root 4096 Jun 29 12:57 src/

root@jenkins-test:~/events-log# /root/buck/bin/buck build events-log:events-  
log
Using buckd.
BUILD FAILED: No build file at events-log/BUCK when resolving target  
Run Code Online (Sandbox Code Playgroud)

//事件日志:事件日志.

有人可以告诉你如何修复它并构建jar.

谢谢

小智 6

我想我终于搞清楚了......

我最后做的是检查Gerrit并在Gerrit树中构建events-log插件.

git clone https://gerrit.googlesource.com/gerrit
cd gerrit
git co v2.11.2
git submodule init
git submodule update

git clone https://gerrit.googlesource.com/plugins/events-log plugins/events-log
buck build plugins/events-log
Run Code Online (Sandbox Code Playgroud)