Skip to content

Commit c495a6c

Browse files
committed
Update build jobs to use Ubuntu 21.04
1 parent 1399073 commit c495a6c

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.grabl/automation.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,19 @@ build:
2626
owner: vaticle
2727
branch: master
2828
dependency-analysis:
29-
image: vaticle-ubuntu-20.04
29+
image: vaticle-ubuntu-21.04
3030
command: |
3131
bazel run @vaticle_dependencies//factory/analysis:dependency-analysis
3232
correctness:
3333
build:
34-
image: vaticle-ubuntu-20.04
34+
image: vaticle-ubuntu-21.04
3535
#NPM packages can't be built under RBE
3636
command: |
3737
bazel build //...
3838
bazel run @vaticle_dependencies//tool/checkstyle:test-coverage
3939
bazel test $(bazel query 'kind(checkstyle_test, //...)') --test_output=errors
4040
build-dependency:
41-
image: vaticle-ubuntu-20.04
41+
image: vaticle-ubuntu-21.04
4242
command: |
4343
dependencies/maven/update.sh
4444
git diff --exit-code dependencies/maven/artifacts.snapshot
@@ -47,7 +47,7 @@ build:
4747
filter:
4848
owner: vaticle
4949
branch: master
50-
image: vaticle-ubuntu-20.04
50+
image: vaticle-ubuntu-21.04
5151
dependencies: [build, build-dependency]
5252
command: |
5353
export DEPLOY_MAVEN_USERNAME=$REPO_VATICLE_USERNAME
@@ -57,7 +57,7 @@ build:
5757
filter:
5858
owner: vaticle
5959
branch: master
60-
image: vaticle-ubuntu-20.04
60+
image: vaticle-ubuntu-21.04
6161
command: |
6262
curl https://cli-assets.heroku.com/apt/release.key | sudo apt-key add -
6363
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
@@ -72,7 +72,7 @@ build:
7272
filter:
7373
owner: vaticle
7474
branch: master
75-
image: vaticle-ubuntu-20.04
75+
image: vaticle-ubuntu-21.04
7676
type: foreground
7777
command: |
7878
pyenv global 3.6.10
@@ -89,7 +89,7 @@ release:
8989
branch: master
9090
deployment:
9191
deploy-github:
92-
image: vaticle-ubuntu-20.04
92+
image: vaticle-ubuntu-21.04
9393
command: |
9494
pyenv install -s 3.6.10
9595
pyenv global 3.6.10 system
@@ -99,14 +99,14 @@ release:
9999
export DEPLOY_GITHUB_TOKEN=$REPO_GITHUB_TOKEN
100100
bazel run --define version=$(cat VERSION) //:deploy-github -- $GRABL_COMMIT
101101
deploy-maven-release:
102-
image: vaticle-ubuntu-20.04
102+
image: vaticle-ubuntu-21.04
103103
command: |
104104
export DEPLOY_MAVEN_USERNAME=$REPO_VATICLE_USERNAME
105105
export DEPLOY_MAVEN_PASSWORD=$REPO_VATICLE_PASSWORD
106106
bazel run --define version=$(cat VERSION) //grpc/java:deploy-maven -- release
107107
dependencies: [deploy-github]
108108
deploy-npm-release:
109-
image: vaticle-ubuntu-20.04
109+
image: vaticle-ubuntu-21.04
110110
command: |
111111
curl https://cli-assets.heroku.com/apt/release.key | sudo apt-key add -
112112
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
@@ -118,7 +118,7 @@ release:
118118
bazel run --define version=$(cat VERSION) //grpc/nodejs:deploy-npm -- release
119119
dependencies: [deploy-github]
120120
deploy-pip-release:
121-
image: vaticle-ubuntu-20.04
121+
image: vaticle-ubuntu-21.04
122122
command: |
123123
pyenv global 3.6.10
124124
sudo unlink /usr/bin/python3

dependencies/vaticle/repositories.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ def vaticle_dependencies():
2121
git_repository(
2222
name = "vaticle_dependencies",
2323
remote = "https://github.com/vaticle/dependencies",
24-
commit = "41c2fb8bcc02dbc86385afa61c392bc67e5d0034", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_dependencies
24+
commit = "e1e21118201b71855927062fb67f267b54f71017", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_dependencies
2525
)

0 commit comments

Comments
 (0)