Skip to content

Commit

Permalink
Fix nightly build (#3693)
Browse files Browse the repository at this point in the history
  • Loading branch information
sustrik authored Mar 30, 2020
1 parent b0555ea commit 2f106c5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ steps:
- label: "Check licenses"
command:
- mkdir -p /tmp/test-artifacts/licenses
- ./tools/licenses.sh /tmp/test-artifacts/licenses
- ./tools/licenses.sh /tmp/test-artifacts/licenses $BUILDKITE_PIPELINE_SLUG
- diff -rNu3 /tmp/test-artifacts/licenses ./licenses/data
key: licenses
retry:
Expand Down
5 changes: 3 additions & 2 deletions tools/licenses.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@ ROOTDIR=$(dirname "$0")/..
bazel build //:all

DSTDIR=${1:-$ROOTDIR/licenses/data}
PROJECT=${2:-scion}

rm -rf $DSTDIR

(cd $ROOTDIR/bazel-scion/external; find -L . -iregex '.*\(LICENSE\|COPYING\).*') | while IFS= read -r path ; do
(cd $ROOTDIR/bazel-$PROJECT/external; find -L . -iregex '.*\(LICENSE\|COPYING\).*') | while IFS= read -r path ; do
dst=$DSTDIR/$(dirname $path)
mkdir -p $dst
cp $ROOTDIR/bazel-scion/external/$path $dst
cp $ROOTDIR/bazel-$PROJECT/external/$path $dst
done

# Bazel tools are used only for building.
Expand Down

0 comments on commit 2f106c5

Please sign in to comment.