Compare commits

...

7 Commits

Author SHA1 Message Date
George Adams
8e287f0104
Merge 5398d30241 into bcfbca5b71 2024-09-16 20:32:51 +01:00
George Adams
5398d30241
Update .github/workflows/e2e-versions.yml
Co-authored-by: christian <153755613+skateball@users.noreply.github.com>
2024-09-16 20:32:41 +01:00
George Adams
ff1f7f380c
rework test 2024-08-16 10:30:36 +01:00
George Adams
d67365e824
rework test 2024-08-16 10:23:50 +01:00
George Adams
a3755773a1
add dist 2024-08-16 10:20:34 +01:00
George Adams
0685457b96
attempt to add e2e test for Alpine 2024-08-16 10:19:46 +01:00
George Adams
12cfe0fd55
temurin: add support for Alpine Linux 2024-08-16 10:17:18 +01:00
3 changed files with 36 additions and 0 deletions

View File

@ -63,6 +63,32 @@ jobs:
run: bash __tests__/verify-java.sh "${{ matrix.version }}" "${{ steps.setup-java.outputs.path }}"
shell: bash
setup-java-alpine-linux:
name: ${{ matrix.distribution }} ${{ matrix.version }} (jdk-x64) - alpine-linux - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
container:
image: alpine:latest
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
distribution: ['temurin', 'sapmachine']
version: ['21', '17']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install bash
run: apk add --no-cache bash
- name: setup-java
uses: ./
id: setup-java
with:
java-version: ${{ matrix.version }}
distribution: ${{ matrix.distribution }}
- name: Verify Java
run: bash __tests__/verify-java.sh "${{ matrix.version }}" "${{ steps.setup-java.outputs.path }}"
shell: bash
setup-java-major-minor-versions:
name: ${{ matrix.distribution }} ${{ matrix.version }} (jdk-x64) - ${{ matrix.os }}
needs: setup-java-major-versions

5
dist/setup/index.js vendored
View File

@ -125448,6 +125448,11 @@ class TemurinDistribution extends base_installer_1.JavaBase {
return 'mac';
case 'win32':
return 'windows';
case 'linux':
if (fs_1.default.existsSync('/etc/alpine-release')) {
return 'alpine-linux';
}
return 'linux';
default:
return process.platform;
}

View File

@ -173,6 +173,11 @@ export class TemurinDistribution extends JavaBase {
return 'mac';
case 'win32':
return 'windows';
case 'linux':
if (fs.existsSync('/etc/alpine-release')) {
return 'alpine-linux';
}
return 'linux';
default:
return process.platform;
}