Compare commits

...

8 Commits

Author SHA1 Message Date
George Adams b2f3991aad
Merge 5398d30241 into b36c23c0d9 2024-09-23 11:30:10 -07:00
aparnajyothi-y b36c23c0d9
check-dist-failure-fix (#687) 2024-09-23 11:07:17 -05: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 4332 additions and 4296 deletions

View File

@ -74,6 +74,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

8597
dist/setup/index.js vendored

File diff suppressed because it is too large Load Diff

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;
}