Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds Jenkinsfile and updates release-binary to create a SHA. #71

Merged
merged 10 commits into from
Feb 9, 2017
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def presubmit(gitUtils, bazel) {
bazel.fetch('-k //...')
}
stage('Bazel Build') {
bazel.build('//...')
bazel.build('--strategy=CppCompile=standalone //...')
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Make sure this is working, the BUILD file for envoy requires bazel sandbox at the time I wrote them.

}
stage('Bazel Tests') {
bazel.test('//...')
Expand Down