File tree Expand file tree Collapse file tree 3 files changed +13
-5
lines changed Expand file tree Collapse file tree 3 files changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,6 @@ branchProtectionRules:
29
29
requiresStrictStatusChecks : false
30
30
# List of required status check contexts that must pass for commits to be accepted to matching branches.
31
31
requiredStatusCheckContexts :
32
- - " dependencies (8)"
33
32
- " dependencies (11)"
34
33
- " lint"
35
34
- " clirr"
Original file line number Diff line number Diff line change 10
10
strategy :
11
11
fail-fast : false
12
12
matrix :
13
- java : [8, 11]
13
+ java : [11]
14
14
repo :
15
15
- java-bigquery
16
16
- java-bigqueryconnection
27
27
- run : sudo apt-get update -y
28
28
- run : sudo apt-get install libxml2-utils
29
29
- run : .kokoro/client-library-check.sh ${{matrix.repo}} dependencies
30
- if : ${{matrix.java != '8' }}
31
- # Always successful for Java 8, which we'll remove soon
Original file line number Diff line number Diff line change 833
833
</plugins >
834
834
</build >
835
835
</profile >
836
-
836
+ <profile >
837
+ <!-- JDK 9+ has the "release" option to ensure the generated bytecode is
838
+ compatible with Java 8. Maven-compiler-plugin's "<target>1.8</target>" is
839
+ not sufficient. -->
840
+ <id >compiler-release-8</id >
841
+ <activation >
842
+ <jdk >[9,]</jdk >
843
+ </activation >
844
+ <properties >
845
+ <maven .compiler.release>8</maven .compiler.release>
846
+ </properties >
847
+ </profile >
837
848
</profiles >
838
849
</project >
You can’t perform that action at this time.
0 commit comments