Toggle navigation
Toggle navigation
This project
Loading...
Sign in
홍길동
/
onos
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Brian O'Connor
2016-05-04 20:42:59 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3724a03b2b483603128e3817daec9d42d2d972f3
3724a03b
1 parent
67f1c298
Another checkstyle fix for Jenkins
Change-Id: I226aac8eac6911af833bfeb309be36b1c58831fe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
bucklets/onos.bucklet
bucklets/onos.bucklet
View file @
3724a03
...
...
@@ -111,8 +111,6 @@ def osgi_jar(
### Checkstyle
if srcs:
chk_cmd = '#!/bin/bash\n'
# FIXME hack to add dependency on suppressions-xml in the checkstyle rule
chk_cmd += 'FOO="$(location //tools/build/conf:suppressions-xml)"\n'
base = get_base_path()
chk_cmd += ' '.join(( 'java -jar $(location //lib:checkstyle)',
'-c $(location //tools/build/conf:checkstyle-xml)',
...
...
@@ -131,7 +129,11 @@ def osgi_jar(
sh_test(
name = name + '-checkstyle',
test = ':' + name + '-checkstyle-sh',
deps = [ ':'+ bare_jar_name ],
deps = [ ':'+ bare_jar_name,
'//lib:checkstyle',
'//tools/build/conf:checkstyle-xml',
'//tools/build/conf:suppressions-xml',
],
labels = [ 'checkstyle' ],
)
else:
...
...
Please
register
or
login
to post a comment