diff options
Diffstat (limited to 'third_party/python/gyp/buildbot/travis-test.sh')
-rwxr-xr-x | third_party/python/gyp/buildbot/travis-test.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/third_party/python/gyp/buildbot/travis-test.sh b/third_party/python/gyp/buildbot/travis-test.sh new file mode 100755 index 0000000000..4bd69df244 --- /dev/null +++ b/third_party/python/gyp/buildbot/travis-test.sh @@ -0,0 +1,12 @@ +#!/bin/sh + +# Copyright 2018 Google Inc. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +main() { + export PATH="$HOME/depot_tools:$PATH" + ./gyptest.py -a -f ninja +} + +main "$@" |