FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
ScratchPaper/.github/workflows/ci.yml at master · 2BAB/ScratchPaper · GitHub
2BAB
/
ScratchPaper
Public
Notifications
You must be signed in to change notification settings
Fork
4
Star
73
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
ScratchPaper
/
.github
/
workflows
/
ci.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
108 lines (103 loc) · 3.42 KB
Breadcrumbs
ScratchPaper
/
.github
/
workflows
/
ci.yml
Copy path
File metadata and controls
108 lines (103 loc) · 3.42 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
name
:
CI
on
:
pull_request
:
branches
:
-
master
paths-ignore
:
-
'
*.md
'
push
:
branches
:
-
master
paths-ignore
:
-
'
*.md
'
env
:
CI
:
true
GRADLE_OPTS
:
-Dorg.gradle.daemon=false -Dkotlin.incremental=false
TERM
:
dumb
jobs
:
assemble
:
name
:
Assemble
runs-on
:
ubuntu-latest
env
:
JAVA_TOOL_OPTIONS
:
-Xmx4g
steps
:
-
uses
:
actions/checkout@v2
-
uses
:
gradle/wrapper-validation-action@v1
-
name
:
Set up JDK 17
uses
:
actions/setup-java@v2
with
:
distribution
:
'
zulu
'
java-version
:
'
17
'
-
uses
:
actions/cache@v2
with
:
path
:
|
~/.gradle/caches
~/.gradle/wrapper
key
:
${{ runner.os }}-${{ github.job }}-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}
restore-keys
:
|
${{ runner.os }}-${{ github.job }}-
-
run
:
|
./gradlew assemble
checks
:
name
:
Checks (unit tests and static analysis, TODO:add detekt check after set it up)
runs-on
:
ubuntu-latest
env
:
JAVA_TOOL_OPTIONS
:
-Xmx4g
steps
:
-
uses
:
actions/checkout@v2
-
uses
:
gradle/wrapper-validation-action@v1
-
name
:
Set up JDK 17
uses
:
actions/setup-java@v2
with
:
distribution
:
'
zulu
'
java-version
:
'
17
'
-
uses
:
actions/cache@v2
with
:
path
:
|
~/.gradle/caches
~/.gradle/wrapper
key
:
${{ runner.os }}-${{ github.job }}-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}
restore-keys
:
|
${{ runner.os }}-${{ github.job }}-
-
run
:
|
./gradlew :scratchpaper:test
functional-tests
:
name
:
Functional tests
runs-on
:
ubuntu-latest
env
:
JAVA_TOOL_OPTIONS
:
-Xmx4g
steps
:
-
uses
:
actions/checkout@v2
-
uses
:
gradle/wrapper-validation-action@v1
-
name
:
Set up JDK 17
uses
:
actions/setup-java@v2
with
:
distribution
:
'
zulu
'
java-version
:
'
17
'
-
uses
:
actions/cache@v2
with
:
path
:
|
~/.gradle/caches
~/.gradle/wrapper
key
:
${{ runner.os }}-${{ github.job }}-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}
restore-keys
:
|
${{ runner.os }}-${{ github.job }}-
-
name
:
Prepare environment
env
:
SIGNING_SECRET_KEY_CONTENT
:
${{ secrets.SIGNING_SECRET_KEY_CONTENT }}
SIGNING_SECRET_KEY_RING_FILE
:
${{ secrets.SIGNING_SECRET_KEY_RING_FILE }}
run
:
|
git fetch --unshallow
sudo bash -c "echo '$SIGNING_SECRET_KEY_CONTENT' | base64 -d > '$SIGNING_SECRET_KEY_RING_FILE'"
-
name
:
Build & Release all Polyfill libraries to MavenLocal
run
:
chmod +x ./publish_to_local.sh | ./publish_to_local.sh
env
:
SIGNING_KEY_ID
:
${{ secrets.SIGNING_KEY_ID }}
SIGNING_PASSWORD
:
${{ secrets.SIGNING_PASSWORD }}
SIGNING_SECRET_KEY_RING_FILE
:
${{ secrets.SIGNING_SECRET_KEY_RING_FILE }}
SIGNING_SECRET_KEY_CONTENT
:
${{ secrets.SIGNING_SECRET_KEY_CONTENT }}
OSSRH_USERNAME
:
${{ secrets.OSSRH_USERNAME }}
OSSRH_PASSWORD
:
${{ secrets.OSSRH_PASSWORD }}
GH_DEV_TOKEN
:
${{ secrets.GH_DEV_TOKEN }}
-
run
:
|
./gradlew clean :functional-test:functionalTest
Back
|
FazBrowse Home
|
New Git URL