Skip to content

Commit fc62cca

Browse files
authored
V2 setup-java ADR (#97)
* V2 setup-java initial ADR * Update ADR * Misc fixes * Clarifications around default behavior and new input * PR feedback
1 parent e73e96a commit fc62cca

File tree

2 files changed

+84
-0
lines changed

2 files changed

+84
-0
lines changed

docs/adrs/0000-v2-setup-java.md

+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
# 0. V2 setup-java
2+
3+
Date: 2020-08-24
4+
5+
Status: Proposed
6+
7+
# Context
8+
9+
- The `v1` version of `setup-java` downloads and installs Zulu builds of OpenJDK. There is a huge ask from customers to offer AdoptOpenJDK/Adoptium builds of OpenJDK: https://github.com/actions/setup-java/issues/13
10+
11+
- Zulu and AdoptOpenJDK aren't the only distributions of Java though. Other providers include Oracle OpenJDK or Amazon Corretto and ideally it would be nice to support downloading Java from all providers.
12+
13+
- GitHub Actions virtual environments install and default to AdoptOpenJDK builds of OpenJDK. `setup-java` should give users an option to download and use other distributions that may not be be installed
14+
15+
# Decision
16+
17+
## New input
18+
19+
A new required input parameter (titled `distribution`) will be added to `setup-java` that will allow users to specify the distribution that they would like to download
20+
21+
```yaml
22+
with:
23+
java-version: '11'
24+
distribution: adoptium
25+
```
26+
27+
## Default Behavior
28+
29+
There will be no default distribution that we pick for the user. Users will have to specify a distribution in their YAML or else the action will fail.
30+
31+
Requiring a default version will break users that are pinned to `@main` as they will have no `distribution` specified in their YAML. Telemetry indicates that only a small percentage of users would be effected though. Users pinned to `v1` will be uneffected. This change is meant to not be backward compatible and it is acceptable to change the default behavior because a new major version will be released alongside these changes.
32+
33+
## Extensibility & Documentation
34+
35+
`setup-java` should be structured in such a way that will allow the open source community to easily add support for extra distributions.
36+
37+
Existing code will be restructured so that distribution specific code will be easily separated. Currently the core download logic is in a single file, `installer.ts`. This file will be split up and abstracted out so that there will be no vendor specified logic. Each distribution will have it's own files under `src/distributions` that will contain the core setup logic for a specific distribution.
38+
39+
```yaml
40+
∟ src/
41+
installer.ts # core installer logic
42+
distributions/
43+
∟ adoptium/ # adoptium (formerly AdoptOpenJDK) specific logic
44+
∟ zulu/ # zulu specific logic
45+
∟ # future distributions will be added here
46+
```
47+
48+
The contribution doc (`CONTRIBUTING.md`) will describe how a new distribution should be added and how everything should be structured.
49+
50+
## v2-preview
51+
52+
There will be a `v2-preview` branch that will be created for development and testing. Any changes will first be merged into `v2-preview` branch. After a period of testing & verification, the `v2-preview` branch will be merged into the `main` branch and a `v2` tag will be created. Any [GitHub public documentation](https://docs.github.com/en/actions/language-and-framework-guides/github-actions-for-java) and [starter workflows](https://github.com/actions/starter-workflows) that mention `setup-java` will then be updated to use `v2` instead of `v1`.
53+
54+
## Goals & Anti-Goals
55+
56+
The main focus of the `v2` version of `setup-java` will be to add support for adoptium builds of openJDK in addition to Zulu builds of openJDK. In addition, extensibility will be a priority so that other distributions can be added in the future.
57+
58+
The `setup-java` action has some logic that creates a `settings.xml` file so that it is easier to publish packages. Any improvements or modifications to this logic or anything Gradle/Maven specific will be avoided during the development of the `v2-preview`.
59+
60+
# Consequences
61+
62+
- Users will have more flexibility and the freedom to choose a specific distribution that they would like (AdoptOpenJDK builds of OpenJDK in addition or Zulu builds of OpenJDK)
63+
- `setup-java` will be structured in such a way that will allow for more distributions to be easily added in the future
64+
- A large subset of users pin to `@main` or `@master` instead of to a specific version (`v1`). By introducing a breaking change that now requires a distribution to be specified, many users will have their workflows fail until they go and update their yaml
65+
- Higher maintenance and support burden moving forward

docs/adrs/README.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# ADRs
2+
3+
ADR, short for "Architecture Decision Record" is a way of capturing important architectural decisions, along with their context and consequences.
4+
5+
This folder includes ADRs for the setup-java action. ADRs are proposed in the form of a pull request, and they commonly follow this format:
6+
7+
* **Title**: short present tense imperative phrase, less than 50 characters, like a git commit message.
8+
9+
* **Status**: proposed, accepted, rejected, deprecated, superseded, etc.
10+
11+
* **Context**: what is the issue that we're seeing that is motivating this decision or change.
12+
13+
* **Decision**: what is the change that we're actually proposing or doing.
14+
15+
* **Consequences**: what becomes easier or more difficult to do because of this change.
16+
17+
---
18+
19+
- More information about ADRs can be found [here](https://github.com/joelparkerhenderson/architecture_decision_record).

0 commit comments

Comments
 (0)