| commit | 8e559fdad84f71a8280b137e3ab41e29be0df136 | [log] [tgz] |
|---|---|---|
| author | Jesse Wilson <jwilson@squareup.com> | Tue Jan 03 09:55:28 2023 -0500 |
| committer | GitHub <noreply@github.com> | Tue Jan 03 09:55:28 2023 -0500 |
| tree | c92f389ee3c110352f62551469782794c778f83c | |
| parent | fd7e894f66d4e04ebe5a33f2bcdf7a24eb869de5 [diff] |
Don't do CI builds for obsolete JDKs (#1185)
This is motivated by an accute problem with OpenJDK 10, which
is consistently failing in CI for reasons wholy unrelated to
Okio.
> Configure project :android-test
Unable to detect AGP versions for included builds. All projects in the build should use the same AGP version. Class name for the included build object: org.gradle.composite.internal.DefaultIncludedBuild$IncludedBuildImpl_Decorated.
e: /home/runner/work/okio/okio/android-test/build.gradle.kts:18:1: Unresolved reference: android
It's likely Gradle or AGP or something doesn't work on Java 10,
even though it does work on Java 8, Java 9, Java 11, and Java 12.
I'm not interested in debugging this problem; the right fix for
it is 'Upgrade to a newer JDK'.
I've specifically dropped unmaintained JDKs according to this page:
https://en.wikipedia.org/wiki/Java_version_historySee the project website for documentation and APIs.
Okio is a library that complements java.io and java.nio to make it much easier to access, store, and process your data. It started as a component of OkHttp, the capable HTTP client included in Android. It's well-exercised and ready to solve new problems.
Copyright 2013 Square, Inc. 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.