Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
66e7c678
Commit
66e7c678
authored
Jul 26, 2017
by
Jan Tattermusch
Browse files
Options
Downloads
Patches
Plain Diff
revamp kokoro macos jobs
parent
bc699ed5
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
tools/internal_ci/macos/grpc_master.cfg
+6
-1
6 additions, 1 deletion
tools/internal_ci/macos/grpc_master.cfg
tools/internal_ci/macos/grpc_master.sh
+0
-31
0 additions, 31 deletions
tools/internal_ci/macos/grpc_master.sh
with
6 additions
and
32 deletions
tools/internal_ci/macos/grpc_master.cfg
+
6
−
1
View file @
66e7c678
...
@@ -15,7 +15,7 @@
...
@@ -15,7 +15,7 @@
# Config file for the internal CI (in protobuf text format)
# Config file for the internal CI (in protobuf text format)
# Location of the continuous shell script in repository.
# Location of the continuous shell script in repository.
build_file:
"grpc/tools/internal_ci/macos/grpc_
master
.sh"
build_file:
"grpc/tools/internal_ci/macos/grpc_
run_tests_matrix
.sh"
timeout_mins:
240
timeout_mins:
240
action
{
action
{
define_artifacts
{
define_artifacts
{
...
@@ -23,3 +23,8 @@ action {
...
@@ -23,3 +23,8 @@ action {
regex:
"github/grpc/reports/**"
regex:
"github/grpc/reports/**"
}
}
}
}
env_vars
{
key:
"RUN_TESTS_FLAGS"
value:
"-f
basictests
macos
--internal_ci
-j
2
--inner_jobs
4"
}
This diff is collapsed.
Click to expand it.
tools/internal_ci/macos/grpc_master.sh
deleted
100755 → 0
+
0
−
31
View file @
bc699ed5
#!/bin/bash
# Copyright 2017 gRPC authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
set
-ex
# change to grpc repo root
cd
$(
dirname
$0
)
/../../..
source
tools/internal_ci/helper_scripts/prepare_build_macos_rc
tools/run_tests/run_tests_matrix.py
-f
basictests macos
--internal_ci
-j
2
--inner_jobs
4
||
FAILED
=
"true"
# kill port_server.py to prevent the build from hanging
ps aux |
grep
port_server
\\
.py |
awk
'{print $2}'
| xargs
kill
-9
if
[
"
$FAILED
"
!=
""
]
then
exit
1
fi
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
sign in
to comment