mirror of
https://github.com/actions/setup-java.git
synced 2026-07-10 07:16:19 +00:00
Compare commits
No commits in common. "4776457db037fe3a1c0e28f888b335c1c7dac967" and "515257f3daa29c4e5934f5285cf4c6ca211c94c8" have entirely different histories.
4776457db0
...
515257f3da
18
.github/workflows/e2e-versions.yml
vendored
18
.github/workflows/e2e-versions.yml
vendored
@ -136,14 +136,7 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
os: [macos-latest, windows-latest, ubuntu-latest]
|
os: [macos-latest, windows-latest, ubuntu-latest]
|
||||||
distribution:
|
distribution:
|
||||||
[
|
['temurin', 'zulu', 'liberica', 'dragonwell', 'sapmachine', 'jetbrains']
|
||||||
'temurin',
|
|
||||||
'zulu',
|
|
||||||
'liberica',
|
|
||||||
'dragonwell',
|
|
||||||
'sapmachine',
|
|
||||||
'jetbrains'
|
|
||||||
]
|
|
||||||
exclude:
|
exclude:
|
||||||
- distribution: dragonwell
|
- distribution: dragonwell
|
||||||
os: macos-latest
|
os: macos-latest
|
||||||
@ -170,14 +163,7 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
os: [macos-latest, windows-latest, ubuntu-latest]
|
os: [macos-latest, windows-latest, ubuntu-latest]
|
||||||
distribution:
|
distribution:
|
||||||
[
|
['temurin', 'zulu', 'liberica', 'dragonwell', 'sapmachine', 'jetbrains']
|
||||||
'temurin',
|
|
||||||
'zulu',
|
|
||||||
'liberica',
|
|
||||||
'dragonwell',
|
|
||||||
'sapmachine',
|
|
||||||
'jetbrains'
|
|
||||||
]
|
|
||||||
exclude:
|
exclude:
|
||||||
- distribution: dragonwell
|
- distribution: dragonwell
|
||||||
os: macos-latest
|
os: macos-latest
|
||||||
|
|||||||
8598
dist/setup/index.js
vendored
8598
dist/setup/index.js
vendored
File diff suppressed because it is too large
Load Diff
@ -122,7 +122,7 @@ export class JetBrainsDistribution extends JavaBase {
|
|||||||
page_index++;
|
page_index++;
|
||||||
}
|
}
|
||||||
|
|
||||||
const versions0 = rawVersions.map(v => {
|
const versions = rawVersions.map(v => {
|
||||||
// Release tags look like one of these:
|
// Release tags look like one of these:
|
||||||
// jbr-release-21.0.3b465.3
|
// jbr-release-21.0.3b465.3
|
||||||
// jb11_0_11-b87.7
|
// jb11_0_11-b87.7
|
||||||
@ -161,11 +161,6 @@ export class JetBrainsDistribution extends JavaBase {
|
|||||||
} as IJetBrainsVersion;
|
} as IJetBrainsVersion;
|
||||||
});
|
});
|
||||||
|
|
||||||
const versions = versions0.filter(async i => {
|
|
||||||
const res = await this.http.head(i.url);
|
|
||||||
return res.message.statusCode === 200;
|
|
||||||
});
|
|
||||||
|
|
||||||
if (core.isDebug()) {
|
if (core.isDebug()) {
|
||||||
core.startGroup('Print information about available versions');
|
core.startGroup('Print information about available versions');
|
||||||
console.timeEnd('Retrieving available versions for JBR took'); // eslint-disable-line no-console
|
console.timeEnd('Retrieving available versions for JBR took'); // eslint-disable-line no-console
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user