Skip to content

Commit

Permalink
Added Java 11 build & hopefully fixed site publishing
Browse files Browse the repository at this point in the history
See #114
  • Loading branch information
robfletcher committed Sep 29, 2018
1 parent 38fc724 commit a90d1e6
Showing 1 changed file with 22 additions and 4 deletions.
26 changes: 22 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
defaults: &defaults
docker:
- image: circleci/openjdk:10-jdk
- image: circleci/openjdk:11-jdk
working_directory: ~/repo
environment:
JVM_OPTS: -Xmx3200m
Expand All @@ -24,7 +24,7 @@ defaults: &buildsteps

version: 2
jobs:
build-java10:
build-java11:
<<: *defaults
<<: *buildsteps

Expand All @@ -40,6 +40,12 @@ jobs:
- image: circleci/openjdk:9-jdk
<<: *buildsteps

build-java10:
<<: *defaults
docker:
- image: circleci/openjdk:10-jdk
<<: *buildsteps

release:
<<: *defaults
steps:
Expand All @@ -51,8 +57,14 @@ jobs:
docker:
- image: circleci/openjdk:8-jdk
steps:
- checkout
- run: ./gradlew publishGhPages --stacktrace
- run:
name: Clone with HTTPS
working_directory: /home/circleci/repo
command: |
git clone https://github.com/robfletcher/strikt.git .
- run:
working_directory: /home/circleci/repo
command: ./gradlew publishGhPages --stacktrace

upgradeLocks:
<<: *defaults
Expand Down Expand Up @@ -96,6 +108,12 @@ workflows:
ignore: gh-pages
tags:
only: /.*/
- build-java11:
filters:
branches:
ignore: gh-pages
tags:
only: /.*/
# - pitest:
# requires:
# - build-java8
Expand Down

0 comments on commit a90d1e6

Please sign in to comment.