Skip to content

Commit

Permalink
Attempting to make circle work
Browse files Browse the repository at this point in the history
  • Loading branch information
jpolchlo committed Dec 20, 2021
1 parent 82ed1db commit 04e3270
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,31 +34,31 @@ aliases:
command: ./scripts/cipublish

# Build environments
- &machine-openjdk8-scala2_12_12-environment
- &machine-openjdk8-scala2_12_7-environment
machine:
image: ubuntu-2004:202010-01
environment:
SCALA_VERSION: 2.12.12
SCALA_VERSION: 2.12.7

- &openjdk8-scala2_12_12-environment
- &openjdk8-scala2_12_7-environment
docker:
- image: circleci/openjdk:8-jdk
environment:
SCALA_VERSION: 2.12.12
SCALA_VERSION: 2.12.7

version: 2
workflows:
version: 2
build:
jobs:
- "openjdk8-scala2.12.12":
filters: # required since `openjdk8-scala2.12.12_deploy` has tag filters AND requires `openjdk8-scala2.12.12`
- "openjdk8-scala2.12.7":
filters: # required since `openjdk8-scala2.12.7_deploy` has tag filters AND requires `openjdk8-scala2.12.7`
tags:
only:
- /^(.*)$/
- "openjdk8-scala2.12.12_deploy":
- "openjdk8-scala2.12.7_deploy":
requires:
- "openjdk8-scala2.12.12"
- "openjdk8-scala2.12.7"
filters:
tags:
only:
Expand All @@ -67,10 +67,10 @@ workflows:
jobs:
# Execute cibuild in machine executor so we can use our existing
# docker-compose test setup
"openjdk8-scala2.12.12":
<<: *machine-openjdk8-scala2_12_12-environment
"openjdk8-scala2.12.7":
<<: *machine-openjdk8-scala2_12_7-environment
steps: *run_cibuild

"openjdk8-scala2.12.12_deploy":
<<: *openjdk8-scala2_12_12-environment
"openjdk8-scala2.12.7_deploy":
<<: *openjdk8-scala2_12_7-environment
steps: *run_cipublish

0 comments on commit 04e3270

Please sign in to comment.