-
Notifications
You must be signed in to change notification settings - Fork 1
160 lines (151 loc) · 5.59 KB
/
maven.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Java CI with Maven
on:
push:
branches: [ "trunk" ]
jobs:
build:
runs-on: ubuntu-latest
outputs:
version: ${{ steps.version.outputs.version }}
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: graalvm/setup-graalvm@v1
with:
java-version: '17'
distribution: 'graalvm'
cache: maven
- name: Package
run: mvn -B package -Pdep-check
- id: version
run: echo "version=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)" >> "$GITHUB_OUTPUT"
- name: Upload Build Resources
uses: actions/upload-artifact@v4
with:
name: exe-jar
path: "pace-cli/target/*-jar-with-dependencies.jar"
- name: Upload Native Reflection Configuration
uses: actions/upload-artifact@v4
with:
name: reflection-config
path: "pace-cli/src/main/resources/native-reflection-configuration.json"
- name: Prepare Python Module
run: "touch pace-data/target/generated-sources/python/pacedata/__init__.py && cp pace-data/target/classes/python/setup.py pace-data/target/generated-sources/python/."
- name: Upload Python Module
uses: actions/upload-artifact@v4
with:
name: python-module
path: "pace-data/target/generated-sources/python"
package-python:
needs: build
runs-on: ubuntu-latest
steps:
- name: Download Python Module
uses: actions/download-artifact@v4
with:
name: python-module
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Install Python Dependencies
run: python -m pip install --upgrade pip && python -m pip install setuptools
- name: Build Python Package
run: python setup.py sdist
- name: Upload Python Package
uses: actions/upload-artifact@v4
with:
name: python-package
path: "dist/*.tar.gz"
native-image-unix:
needs: build
strategy:
matrix:
os: [macos-14,macos-11,ubuntu-20.04]
runs-on: ${{ matrix.os }}
steps:
- name: Set up JDK 17
uses: graalvm/setup-graalvm@v1
with:
java-version: '17'
distribution: 'graalvm'
- name: Download Jar
uses: actions/download-artifact@v4
with:
name: exe-jar
- name: Download Native Reflection Configuration
uses: actions/download-artifact@v4
with:
name: reflection-config
- name: Build Executable
run: native-image -jar pace-cli-${{ needs.build.outputs.version }}-jar-with-dependencies.jar -H:Name=pace-cli -H:ReflectionConfigurationFiles=native-reflection-configuration.json -H:-CheckToolchain
- name: Set os/arch environment variables
run: |
echo "os=${RUNNER_OS}" >> $GITHUB_ENV
echo "arch=${RUNNER_ARCH}" >> $GITHUB_ENV
- name: Upload Executable
uses: actions/upload-artifact@v4
with:
name: pace-cli-${{ env.os }}-${{ env.arch }}
path: "pace-cli"
native-image-windows:
needs: build
strategy:
matrix:
os: [ windows-2019 ]
runs-on: ${{ matrix.os }}
steps:
- name: Set up JDK 17
uses: graalvm/setup-graalvm@v1
with:
java-version: '17'
distribution: 'graalvm'
- name: Download Jar
uses: actions/download-artifact@v4
with:
name: exe-jar
- name: Download Native Reflection Configuration
uses: actions/download-artifact@v4
with:
name: reflection-config
- name: Build Executable
run: native-image -jar pace-cli-${{ needs.build.outputs.version }}-jar-with-dependencies.jar -H:Name=pace-cli -H:ReflectionConfigurationFiles=native-reflection-configuration.json -H:-CheckToolchain
- name: Set os/arch environment variables
run: |
echo "os=$env:RUNNER_OS" >> $env:GITHUB_ENV
echo "arch=$env:RUNNER_ARCH" >> $env:GITHUB_ENV
shell: powershell
- name: Upload Executable
uses: actions/upload-artifact@v4
with:
name: pace-cli-${{ env.os }}-${{ env.arch }}
path: "pace-cli.exe"
release:
needs:
- build
- native-image-unix
- native-image-windows
- package-python
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
- run: mkdir release
- run: zip -r release/pace-cli-Linux-X64-${{ needs.build.outputs.version }}.zip pace-cli-Linux-X64
- run: zip -r release/pace-cli-macOS-ARM64-${{ needs.build.outputs.version }}.zip pace-cli-macOS-ARM64
- run: zip -r release/pace-cli-macOS-X64-${{ needs.build.outputs.version }}.zip pace-cli-macOS-X64
- run: zip -r release/pace-cli-Windows-X64-${{ needs.build.outputs.version }}.zip pace-cli-Windows-X64
- run: cp python-package/*.tar.gz release/.
- run: cp exe-jar/pace-cli-${{ needs.build.outputs.version }}-jar-with-dependencies.jar release/pace-cli-${{ needs.build.outputs.version }}.jar
- name: Update branch release
uses: eine/tip@master
with:
tag: ${{ github.ref_name }}-latest
rm: true
token: ${{ secrets.RELEASE_PAT }}
files: release/*