-
Notifications
You must be signed in to change notification settings - Fork 12
205 lines (154 loc) · 5.39 KB
/
build.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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
name: Build and Test
# Run the main build and test for all branch pushes and pull requests, do not repeat the build for tags
on:
push:
branches:
- '**'
pull_request:
env:
JAVA_DISTRIBUTION: zulu
NODE_VERSION: 14.x
jobs:
platform_build:
runs-on: ubuntu-latest
timeout-minutes: 20
strategy:
matrix:
JAVA_VERSION:
- 11
- 17
steps:
# fetch-depth = 0 is needed to get tags for version info
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Java
uses: actions/setup-java@v3
with:
distribution: ${{ env.JAVA_DISTRIBUTION }}
java-version: ${{ matrix.JAVA_VERSION }}
# Turn on Gradle dependency caching
cache: gradle
- name: Build
run: ./gradlew classes testClasses
- name: Unit tests
run: ./gradlew test
# If the tests fail, make the output available for download
- name: Store failed test results
uses: actions/upload-artifact@v3
if: failure()
with:
name: junit-test-results
path: build/modules/*/reports/**
retention-days: 7
python_runtime:
# Testing targets for the Python model runtime
# Include the latest stable release (3.9)
# Oldest supported version is 3.6, this is required by Pandas 1.0
# (also note Python 3.5 is EOL, final release 3.5.10 was in September 2020)
# Do not include 2.7 - that ship has sailed!
strategy:
# Try to finish all jobs - it can be helpful to see if some succeed and others fail
fail-fast: false
matrix:
environment:
# Latest supported versions on all 3 major platforms
- { ENV_NAME: "Windows, 3.11, Pandas 1.5, PySpark 3.4",
PLATFORM: 'windows-latest',
PYTHON_VERSION: "3.11",
PANDAS_VERSION: ">= 1.5.0, < 1.6.0",
PYSPARK_VERSION: ">= 3.4.0, < 3.5.0" }
- { ENV_NAME: "macOS, 3.11, Pandas 1.5, PySpark 3.4",
PLATFORM: 'macos-latest',
PYTHON_VERSION: "3.11",
PANDAS_VERSION: ">= 1.5.0, < 1.6.0",
PYSPARK_VERSION: ">= 3.4.0, < 3.5.0" }
- { ENV_NAME: "Linux, 3.11, Pandas 1.5, PySpark 3.4",
PLATFORM: 'ubuntu-latest',
PYTHON_VERSION: "3.11",
PANDAS_VERSION: ">= 1.5.0, < 1.6.0",
PYSPARK_VERSION: ">= 3.4.0, < 3.5.0" }
# Intermediate supported versions
- { ENV_NAME: "Linux, 3.9, Pandas 1.3, PySpark 3.2",
PLATFORM: 'ubuntu-latest',
PYTHON_VERSION: "3.9",
PANDAS_VERSION: ">= 1.3.0, < 1.4.0",
PYSPARK_VERSION: ">= 3.2.0, < 3.3.0" }
# Oldest supported versions, force testing against .0 for Python, Pandas and PySpark
# If those don't work due to bugs, we need to update README for the supported versions
- { ENV_NAME: "Linux, 3.8, Pandas 1.2, PySpark 3.0",
PLATFORM: 'ubuntu-latest',
PYTHON_VERSION: "3.8",
PANDAS_VERSION: "== 1.2.0",
PYSPARK_VERSION: "== 3.0.0" }
runs-on: ${{ matrix.environment.PLATFORM }}
timeout-minutes: 20
steps:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.environment.PYTHON_VERSION }}
- name: PIP Upgrade
run: python -m pip install --upgrade pip
# fetch-depth = 0 is needed to get tags for version info
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install dependencies
run: |
pip install "pyspark ${{ matrix.environment.PYSPARK_VERSION }}"
pip install "pandas ${{ matrix.environment.PANDAS_VERSION }}"
cd tracdap-runtime/python
pip install -r requirements.txt
- name: Protoc code generation
run: python tracdap-runtime/python/build_runtime.py --target codegen
- name: Unit tests
run: python tracdap-runtime/python/build_runtime.py --target test
- name: Python example models
run: python tracdap-runtime/python/build_runtime.py --target examples
web_api:
runs-on: ubuntu-latest
steps:
# fetch-depth = 0 is needed to get tags for version info
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
cache-dependency-path: tracdap-api/packages/web/package-lock.json
- name: Install dependencies
run: |
cd tracdap-api/packages/web
npm install
- name: Build API
run: |
cd tracdap-api/packages/web
npm run buildApi
documentation:
runs-on: ubuntu-latest
steps:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: PIP Upgrade
run: python -m pip install --upgrade pip
# fetch-depth = 0 is needed to get tags for version info
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install dependencies for build tools
run: |
cd dev/
pip install -r requirements.txt
- name: Run all docgen targets
run: |
cd dev/
python docgen/docgen-ctrl.py all