This is an automated email from the ASF dual-hosted git repository.
bhulette pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/master by this push:
new 1b86266 [BEAM-12104] Pin Dataflow wordcount to ubuntu 18.04 (#14451)
1b86266 is described below
commit 1b862668a8bd92babe4af45fcf4d610e9fae1681
Author: Brian Hulette <[email protected]>
AuthorDate: Fri Apr 9 09:40:58 2021 -0700
[BEAM-12104] Pin Dataflow wordcount to ubuntu 18.04 (#14451)
---
.github/workflows/java_tests.yml | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/java_tests.yml b/.github/workflows/java_tests.yml
index 5ec1e87..581c92a 100644
--- a/.github/workflows/java_tests.yml
+++ b/.github/workflows/java_tests.yml
@@ -146,7 +146,9 @@ jobs:
strategy:
fail-fast: false
matrix:
- os: [ubuntu-latest, macos-latest, windows-latest]
+ # TODO(BEAM-12104): Use ubuntu-latest. Currently pinned to ubuntu 18.04
+ # because 20.04 switched the default JDK to 11.
+ os: [ubuntu-18.04, macos-latest, windows-latest]
steps:
- name: Checkout code
uses: actions/checkout@v2