FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
setup-java/.github/workflows/workflow.yml at master · bzhaoopenstack/setup-java · GitHub
bzhaoopenstack
/
setup-java
Public
forked from
actions/setup-java
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
setup-java
/
.github
/
workflows
/
workflow.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
88 lines (85 loc) · 2.55 KB
Breadcrumbs
setup-java
/
.github
/
workflows
/
workflow.yml
Copy path
File metadata and controls
88 lines (85 loc) · 2.55 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
name
:
Main workflow
on
:
[push, pull_request]
jobs
:
build
:
runs-on
:
${{ matrix.operating-system }}
strategy
:
matrix
:
operating-system
:
[ubuntu-latest, windows-latest]
steps
:
-
name
:
Checkout
uses
:
actions/checkout@v2
-
name
:
Setup Node.js 12
uses
:
actions/setup-node@v1
with
:
node-version
:
12.x
-
name
:
npm install
run
:
npm install
-
name
:
Lint
run
:
npm run format-check
-
name
:
npm test
run
:
npm test
test
:
runs-on
:
${{ matrix.operating-system }}
strategy
:
matrix
:
operating-system
:
[ubuntu-latest, windows-latest]
steps
:
-
name
:
Checkout
uses
:
actions/checkout@v2
-
name
:
Clear tool cache
if
:
runner.os != 'windows'
run
:
mv "${{ runner.tool_cache }}" "${{ runner.tool_cache }}.old"
-
name
:
Clear tool cache (Windows)
if
:
runner.os == 'windows'
run
:
move "${{ runner.tool_cache }}" "${{ runner.tool_cache }}.old"
-
name
:
Setup Java 13
id
:
setup-java
uses
:
./
with
:
java-version
:
13.0.2
-
name
:
Verify Java 13
if
:
runner.os != 'windows'
run
:
__tests__/verify-java.sh 13.0.2 "${{ steps.setup-java.outputs.path }}" "${{ steps.setup-java.outputs.version }}"
-
name
:
Verify Java 13 (Windows)
if
:
runner.os == 'windows'
run
:
__tests__/verify-java.ps1 13.0.2 "${{ steps.setup-java.outputs.path }}" "${{ steps.setup-java.outputs.version }}"
test-proxy
:
runs-on
:
ubuntu-latest
container
:
image
:
ubuntu:latest
options
:
--dns 127.0.0.1
services
:
squid-proxy
:
image
:
datadog/squid:latest
ports
:
-
3128:3128
env
:
https_proxy
:
http://squid-proxy:3128
steps
:
-
uses
:
actions/checkout@v2
-
name
:
Clear tool cache
run
:
rm -rf $RUNNER_TOOL_CACHE/*
-
name
:
Setup Java 13
id
:
setup-java
uses
:
./
with
:
java-version
:
13.0.2
-
name
:
Verify Java 13
run
:
__tests__/verify-java.sh 13.0.2 "${{ steps.setup-java.outputs.path }}" "${{ steps.setup-java.outputs.version }}"
test-bypass-proxy
:
runs-on
:
ubuntu-latest
env
:
https_proxy
:
http://no-such-proxy:3128
no_proxy
:
github.com,static.azul.com
steps
:
-
uses
:
actions/checkout@v2
-
name
:
Clear tool cache
run
:
rm -rf $RUNNER_TOOL_CACHE/*
-
name
:
Setup Java 13
id
:
setup-java
uses
:
./
with
:
java-version
:
13.0.2
-
name
:
Verify Java 13
run
:
__tests__/verify-java.sh 13.0.2 "${{ steps.setup-java.outputs.path }}" "${{ steps.setup-java.outputs.version }}"
Back
|
FazBrowse Home
|
New Git URL