diff options
author | Florian Zschocke <florian.zschocke@devolo.de> | 2020-01-05 21:53:36 +0100 |
---|---|---|
committer | Florian Zschocke <florian.zschocke@devolo.de> | 2020-01-05 21:53:36 +0100 |
commit | 998e3de219479ab93ade39dd103502897a993ffb (patch) | |
tree | 9d2af0ebf5f32e40a4549cf71b00f8ae0fa1af80 | |
parent | 9cb37eba8e8ee506bf4df9401cf86af766944c71 (diff) | |
download | gitblit-998e3de219479ab93ade39dd103502897a993ffb.tar.gz gitblit-998e3de219479ab93ade39dd103502897a993ffb.zip |
Build as matrix of Java 8 and 11, only.
We cannot build with Ant on GitHub since the provided Ant
version does not run on Java 7.
-rw-r--r-- | .github/workflows/ci-build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 354d2d52..93bd863a 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - java-version: [7, 8, 11] + java-version: [8, 11] steps: - name: Checkout |