mirror of
https://github.com/actions/setup-java.git
synced 2025-04-21 18:36:46 +00:00
rebase
This commit is contained in:
parent
29d5f19da2
commit
257d7c60c4
1 changed files with 3 additions and 2 deletions
5
.github/workflows/workflow.yml
vendored
5
.github/workflows/workflow.yml
vendored
|
@ -35,16 +35,17 @@ jobs:
|
||||||
if: runner.os == 'windows'
|
if: runner.os == 'windows'
|
||||||
run: move "${{ runner.tool_cache }}" "${{ runner.tool_cache }}.old"
|
run: move "${{ runner.tool_cache }}" "${{ runner.tool_cache }}.old"
|
||||||
- name: Setup Java 13
|
- name: Setup Java 13
|
||||||
|
id: setup-java
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
java-version: 13.0.2
|
java-version: 13.0.2
|
||||||
distro: adoptopenjdk
|
distro: adoptopenjdk
|
||||||
- name: Verify Java 13
|
- name: Verify Java 13
|
||||||
if: runner.os != 'windows'
|
if: runner.os != 'windows'
|
||||||
run: __tests__/verify-java.sh 13.0.2
|
run: __tests__/verify-java.sh 13.0.2 "${{ steps.setup-java.outputs.path }}" "${{ steps.setup-java.outputs.version }}"
|
||||||
- name: Verify Java 13 (Windows)
|
- name: Verify Java 13 (Windows)
|
||||||
if: runner.os == 'windows'
|
if: runner.os == 'windows'
|
||||||
run: __tests__/verify-java.ps1 13.0.2
|
run: __tests__/verify-java.ps1 13.0.2 "${{ steps.setup-java.outputs.path }}" "${{ steps.setup-java.outputs.version }}"
|
||||||
|
|
||||||
testZulu:
|
testZulu:
|
||||||
runs-on: ${{ matrix.operating-system }}
|
runs-on: ${{ matrix.operating-system }}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue