@@ -34,15 +34,15 @@ build:
34
34
image : graknlabs-ubuntu-20.04
35
35
# NPM packages can't be built under RBE
36
36
command : |
37
- bazel build //...
38
- bazel run @graknlabs_dependencies//tool/checkstyle:test-coverage
39
- bazel test $(bazel query 'kind(checkstyle_test, //...)') --test_output=errors
37
+ bazel build --config=rbe //...
38
+ bazel run --config=rbe @graknlabs_dependencies//tool/checkstyle:test-coverage
39
+ bazel test --config=rbe $(bazel query 'kind(checkstyle_test, //...)') --test_output=errors
40
40
build-dependency :
41
41
image : graknlabs-ubuntu-20.04
42
42
command : |
43
43
dependencies/maven/update.sh
44
44
git diff --exit-code dependencies/maven/artifacts.snapshot
45
- bazel run @graknlabs_dependencies//tool/unuseddeps:unused-deps -- list
45
+ bazel run --config=rbe @graknlabs_dependencies//tool/unuseddeps:unused-deps -- list
46
46
deploy-maven-snapshot :
47
47
filter :
48
48
owner : graknlabs
52
52
command : |
53
53
export DEPLOY_MAVEN_USERNAME=$REPO_GRAKN_USERNAME
54
54
export DEPLOY_MAVEN_PASSWORD=$REPO_GRAKN_PASSWORD
55
- bazel run --define version=$(git rev-parse HEAD) //grpc/java:deploy-maven -- snapshot
55
+ bazel run --config=rbe -- define version=$(git rev-parse HEAD) //grpc/java:deploy-maven -- snapshot
56
56
deploy-npm-snapshot :
57
57
filter :
58
58
owner : graknlabs
66
66
export DEPLOY_NPM_USERNAME=$REPO_GRAKN_USERNAME
67
67
export DEPLOY_NPM_PASSWORD=$REPO_GRAKN_PASSWORD
68
68
export DEPLOY_NPM_EMAIL=$REPO_GRAKN_EMAIL
69
- bazel run --define version=$(git rev-parse HEAD) //grpc/nodejs:deploy-npm -- snapshot
69
+ bazel run --config=rbe -- define version=$(git rev-parse HEAD) //grpc/nodejs:deploy-npm -- snapshot
70
70
dependencies : [build, build-dependency]
71
71
deploy-pip-snapshot :
72
72
filter :
@@ -95,13 +95,13 @@ release:
95
95
export RELEASE_NOTES_TOKEN=$REPO_GITHUB_TOKEN
96
96
bazel run @graknlabs_dependencies//tool/release:create-notes -- protocol $(cat VERSION) ./RELEASE_TEMPLATE.md
97
97
export DEPLOY_GITHUB_TOKEN=$REPO_GITHUB_TOKEN
98
- bazel run --define version=$(cat VERSION) //:deploy-github -- $GRABL_COMMIT
98
+ bazel run --config=rbe -- define version=$(cat VERSION) //:deploy-github -- $GRABL_COMMIT
99
99
deploy-maven-release :
100
100
image : graknlabs-ubuntu-20.04
101
101
command : |
102
102
export DEPLOY_MAVEN_USERNAME=$REPO_GRAKN_USERNAME
103
103
export DEPLOY_MAVEN_PASSWORD=$REPO_GRAKN_PASSWORD
104
- bazel run --define version=$(cat VERSION) //grpc/java:deploy-maven -- release
104
+ bazel run --config=rbe -- define version=$(cat VERSION) //grpc/java:deploy-maven -- release
105
105
dependencies : [deploy-github]
106
106
deploy-npm-release :
107
107
image : graknlabs-ubuntu-20.04
@@ -113,7 +113,7 @@ release:
113
113
export DEPLOY_NPM_USERNAME=$REPO_NPM_USERNAME
114
114
export DEPLOY_NPM_PASSWORD=$REPO_NPM_PASSWORD
115
115
export DEPLOY_NPM_EMAIL=$REPO_GRAKN_EMAIL
116
- bazel run --define version=$(cat VERSION) //grpc/nodejs:deploy-npm -- release
116
+ bazel run --config=rbe -- define version=$(cat VERSION) //grpc/nodejs:deploy-npm -- release
117
117
dependencies : [deploy-github]
118
118
deploy-pip-release :
119
119
image : graknlabs-ubuntu-20.04
@@ -124,5 +124,5 @@ release:
124
124
sudo ln -s /usr/share/pyshared/lsb_release.py /opt/pyenv/versions/3.6.10/lib/python3.6/site-packages/lsb_release.py
125
125
export DEPLOY_PIP_USERNAME=$REPO_PYPI_USERNAME
126
126
export DEPLOY_PIP_PASSWORD=$REPO_PYPI_PASSWORD
127
- bazel run --define version=$(cat VERSION) //grpc/python:deploy-pip -- release
127
+ bazel run --config=rbe -- define version=$(cat VERSION) //grpc/python:deploy-pip -- release
128
128
dependencies : [deploy-github]
0 commit comments