forked from scala-cli/java-class-name
-
Notifications
You must be signed in to change notification settings - Fork 2
126 lines (123 loc) · 3.86 KB
/
ci.yml
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
name: CI
on:
push:
branches:
- main
tags:
- "v*"
pull_request:
jobs:
generate-launchers:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
submodules: true
- uses: coursier/[email protected]
- uses: coursier/[email protected]
with:
jvm: temurin:17
- run: |
./mill -i "java-class-name.writeNativeImageScript" generate.sh "" && \
./generate.sh && \
./mill -i "java-class-name.copyToArtifacts" artifacts/
if: runner.os != 'Windows'
- run: |
@call ./mill.bat -i "java-class-name.writeNativeImageScript" generate.bat ""
@call generate.bat
@call ./mill.bat -i "java-class-name.copyToArtifacts" artifacts/
shell: cmd
if: runner.os == 'Windows'
- name: Test
run: ./mill -i java-class-name-tests.test
- uses: actions/upload-artifact@v4
with:
name: launcher-${{ matrix.os }}
path: artifacts/
if-no-files-found: error
retention-days: 1
- run: ./mill -i ci.upload artifacts/
if: github.event_name == 'push'
env:
UPLOAD_GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
generate-static-launcher:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
submodules: true
- uses: coursier/[email protected]
- uses: coursier/[email protected]
with:
jvm: temurin:17
- run: |
./mill -i "java-class-name.static.writeNativeImageScript" generate.sh "" && \
./generate.sh && \
./mill -i "java-class-name.static.copyToArtifacts" artifacts/
- uses: actions/upload-artifact@v4
with:
name: launcher-linux-static
path: artifacts/
if-no-files-found: error
retention-days: 1
- name: Test
run: ./mill -i java-class-name-tests.static.test
- run: ./mill -i ci.upload artifacts/
if: github.event_name == 'push'
env:
UPLOAD_GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
generate-mostly-static-launcher:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
submodules: true
- uses: coursier/[email protected]
- uses: coursier/[email protected]
with:
jvm: temurin:17
- run: |
./mill -i "java-class-name.mostly-static.writeNativeImageScript" generate.sh "" && \
./generate.sh && \
./mill -i "java-class-name.mostly-static.copyToArtifacts" artifacts/
- uses: actions/upload-artifact@v4
with:
name: launcher-linux-mostly-static
path: artifacts/
if-no-files-found: error
retention-days: 1
- name: Test
run: ./mill -i java-class-name-tests.mostly-static.test
- run: ./mill -i ci.upload artifacts/
if: github.event_name == 'push'
env:
UPLOAD_GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
publish:
needs: generate-launchers
if: github.event_name == 'push'
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
submodules: true
- uses: coursier/[email protected]
- uses: coursier/[email protected]
with:
jvm: temurin:17
- run: .github/scripts/gpg-setup.sh
env:
PGP_SECRET: ${{ secrets.PGP_SECRET }}
- name: Publish
run: ./mill -i ci.publishSonatype __.publishArtifacts
env:
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
PGP_PASSWORD: ${{ secrets.PGP_PASSPHRASE }}