aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
Commit message (Collapse)AuthorAgeFilesLines
* checkstyle: 8.0 -> 8.12 (#1369)sebright2018-08-161-2/+2
| | | | This commit also merges new changes to checkstyle.xml and fixes new checkstyle warnings related to Javadocs.
* Fix checkstyle download link. (#1232)Bogdan Drutu2018-06-041-1/+1
|
* To bring parity with travis build add missing tasks to kokoro build.rghetia2018-05-231-2/+11
| | | | | - Each task is treated as separate job to run in parallel. - single script linux_presumbit.sh performs all task based TASK env.
* Move the examples/ format check from the build file to the Travis script.Kristen Kozak2018-03-201-0/+4
| | | | | | This change simplifies the example build file by removing plugins not necessary to build the project. The new Travis job is under allow_failures, so that contributors aren't required to download and run the tool.
* Move the examples/ checkstyle check from the build file to the Travis script.Kristen Kozak2018-03-201-0/+4
| | | | | This change simplifies the example build file but allows us to continue checking the license headers in CI.
* Test with oraclejdk9 on Travis.Kristen Kozak2018-02-211-0/+3
|
* Run Checker Framework null analysis with Travis (fixes #359).Kristen Kozak2017-12-191-0/+3
| | | | I added a separate build job.
* Add bazel build support for `examples`. (#893)Hailong Wen2017-12-121-0/+3
| | | | | | | | | | | | * Add bazel build support for `examples`. * Generate workspace depedencies by [migration-tooling](https://github.com/bazelbuild/migration-tooling). * Change README and add travis job to check bazel build. * Move sudo command to .travis.yml * Change library name to opencensus_examples.
* Add maven build support for `examples`. (#891)Hailong Wen2017-12-111-2/+6
| | | | | | * Add maven build support for `examples`. * Add travis task to verify maven examples build (gradle and maven).
* Fix travis Java 8 build.Hailong Wen2017-12-081-1/+1
|
* Remove unnecessary plugins and script commands; update README commands.Hailong Wen2017-12-081-4/+1
|
* Fix Java 7 travis build script.Hailong Wen2017-12-071-2/+4
|
* Address comments from bogdan and sebright.Hailong Wen2017-12-071-0/+3
| | | | | | | | * Remove unnecessary plugins. * Reuse existing checkstyle.xml and errorprone properties from main project. * Add script in travis and appveyor to build examples.
* Add gradle plugin for google java format. Enforce all files to be formatted. ↵Bogdan Drutu2017-11-031-0/+1
| | | | | | | | | | | | | | (#771) * Add gradle plugin for google java format. Enforce all files to be formatted. * Fix javadoc comments. * update to google-java-formatter 1.5 * Fix comments and run formatter only for java8. * Formatter works only on java8.
* Move the Travis "script" from .travis.yml to a separate file. (#747)Stefan Schmidt2017-10-312-0/+96
* Move the Travis "script" from .travis.yml to a separate file. * Set -e -v. * Replace "jdk_switcher use" as it would require sudo. * Source jdk_switcher.sh on linux only.