-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into error-prone
- Loading branch information
Showing
2,649 changed files
with
568,717 additions
and
3,680 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
directories: | ||
java | ||
javatests | ||
# Add the directories you want added as source here | ||
# By default, we've added your entire workspace ('.') | ||
cup | ||
docs | ||
jflex | ||
jflex-maven-plugin | ||
jflex-unicode-maven-plugin | ||
scripts | ||
testsuite | ||
third_party | ||
|
||
targets: | ||
//java/... | ||
//javatests/... | ||
# Add targets that reach the source code that you want to resolve here | ||
//jflex/examples/... | ||
|
||
additional_languages: | ||
# Uncomment any additional languages you want supported | ||
# android | ||
# dart | ||
# go | ||
# python | ||
# scala | ||
|
||
test_sources: | ||
javatests | ||
src/test/java |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Copyright 2018 Google LLC. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
|
||
build_task: | ||
name: Bazel build and test | ||
container: | ||
image: l.gcr.io/google/bazel:1.1.0 | ||
bazel_version_script: | ||
- bazel --bazelrc=.ci.bazelrc info --remote_http_cache=http://$CIRRUS_HTTP_CACHE_HOST release | ||
build_script: | ||
- bazel --bazelrc=.ci.bazelrc build --remote_http_cache=http://$CIRRUS_HTTP_CACHE_HOST //jflex | ||
build_all_script: | ||
- bazel --bazelrc=.ci.bazelrc build --remote_http_cache=http://$CIRRUS_HTTP_CACHE_HOST //... | ||
test_script: | ||
- bazel --bazelrc=.ci.bazelrc test --remote_http_cache=http://$CIRRUS_HTTP_CACHE_HOST //jflex/... | ||
regression_tests_script: | ||
- bazel --bazelrc=.ci.bazelrc test --remote_http_cache=http://$CIRRUS_HTTP_CACHE_HOST //javatests/jflex/testcase/... | ||
test_all_script: | ||
- bazel --bazelrc=.ci.bazelrc test --remote_http_cache=http://$CIRRUS_HTTP_CACHE_HOST //... | ||
codestyle_task: | ||
name: Check code style | ||
container: | ||
image: openjdk:8-jdk | ||
check_java_format_script: scripts/test-java-format.sh | ||
check_bzl_format_script: scripts/test-bzl-format.sh | ||
buildtools_cache: | ||
folder: buildtools | ||
|
||
steps: | ||
- restore_cache: | ||
keys: | ||
- source-v1-{{ .Branch }}-{{ .Revision }} | ||
- source-v1-{{ .Branch }}- | ||
- source-v1- | ||
- checkout | ||
- git_cache: | ||
key: source-v1-{{ .Branch }}-{{ .Revision }} | ||
paths: | ||
- ".git" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.