-
Notifications
You must be signed in to change notification settings - Fork 23
123 lines (103 loc) · 3.69 KB
/
release.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
name: release
on:
create:
tags:
- '*'
jobs:
create_binaries:
if: (github.event_name == 'create' && github.event.ref_type == 'tag')
runs-on: ubuntu-latest
steps:
- name: 'Set up JDK'
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 21
- name: 'Prepare branch name'
run: >
echo "refName=${GITHUB_REF##*/}" >> $GITHUB_ENV
- name: 'Checkout relevant branch'
uses: actions/checkout@v4
with:
ref: ${{ env.refName }}
- name: 'Cache Maven packages'
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}-${{ github.sha }}
- name: 'Create distribution'
run: >
./mvnw --no-transfer-progress -DskipTests -pl eu.michael-simons.neo4j:neo4j-migrations-cli -am package
- name: 'Upload build artifact'
uses: actions/upload-artifact@v4
with:
name: artifacts-jvm
path: neo4j-migrations-cli/target/neo4j-migrations*.zip
create_native_binaries:
if: (github.event_name == 'create' && github.event.ref_type == 'tag')
name: 'Build with Graal on ${{ matrix.os }}'
strategy:
fail-fast: true
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: 'Prepare git'
run: git config --global core.autocrlf false
- name: 'Prepare branch name'
run: >
echo "refName=${GITHUB_REF##*/}" >> $GITHUB_ENV
- name: 'Checkout relevant branch'
uses: actions/checkout@v4
with:
ref: ${{ env.refName }}
- name: 'Set up Graal'
uses: graalvm/setup-graalvm@v1
with:
distribution: 'graalvm-community'
java-version: 23
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: 'Create distribution'
run: >
./mvnw --no-transfer-progress -Pnative -DskipTests -pl eu.michael-simons.neo4j:neo4j-migrations-cli package -am
- name: 'Smoke test'
run: >
./neo4j-migrations-cli/target/neo4j-migrations -V
- name: 'Upload build artifact'
uses: actions/upload-artifact@v4
with:
name: artifacts-${{ matrix.os }}
path: |
neo4j-migrations-cli/target/neo4j-migrations*.zip
!neo4j-migrations-cli/target/neo4j-migrations-${{ env.refName }}.zip
release:
if: (github.event_name == 'create' && github.event.ref_type == 'tag')
needs: [ create_binaries, create_native_binaries ]
runs-on: ubuntu-latest
steps:
- name: 'Prepare branch name'
run: >
echo "refName=${GITHUB_REF##*/}" >> $GITHUB_ENV
- name: 'Checkout relevant branch'
uses: actions/checkout@v4
with:
ref: ${{ env.refName }}
fetch-depth: 0
- name: 'Download all build artifacts'
uses: actions/download-artifact@v4
with:
pattern: artifacts-*
path: neo4j-migrations-cli/target
merge-multiple: true
- name: 'Restore Maven packages'
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}-${{ github.sha }}
restore-keys: ${{ runner.os }}-m2
- name: 'Create release'
env:
JRELEASER_GITHUB_TOKEN: ${{ secrets.GH_PERSONAL_TOKEN }}
JRELEASER_SDKMAN_CONSUMER_KEY: ${{ secrets.JRELEASER_SDKMAN_CONSUMER_KEY }}
JRELEASER_SDKMAN_CONSUMER_TOKEN: ${{ secrets.JRELEASER_SDKMAN_CONSUMER_TOKEN }}
run: ./mvnw --no-transfer-progress -Pjreleaser -pl :neo4j-migrations-parent jreleaser:full-release