-
Notifications
You must be signed in to change notification settings - Fork 48
177 lines (170 loc) · 4.52 KB
/
ci.yaml
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
name: "CI"
on:
pull_request:
branches:
- main
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
show-github-context:
name: "Show Github Context"
timeout-minutes: 1
runs-on:
- ubuntu-22.04
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
steps:
- run: echo $GITHUB_CONTEXT
test-jvm:
name: "Test JVM Code"
runs-on:
- ubuntu-22.04
steps:
- uses: actions/checkout@v3
timeout-minutes: 1
- uses: actions/setup-java@v3
timeout-minutes: 1
with:
distribution: 'adopt'
java-version: 21
cache: 'sbt'
- uses: arduino/setup-task@v1
timeout-minutes: 1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Increase MMAP Limits
timeout-minutes: 1
run: sudo sysctl -w vm.max_map_count=262144
- name: Lint
timeout-minutes: 5
run: task jvmLint
- name: Compile
timeout-minutes: 5
run: task jvmCompile
- name: Assemble
timeout-minutes: 1
run: task jvmAssemble
- name: Run Unit Tests
timeout-minutes: 1
run: task jvmUnitTest
- name: Run Cluster
timeout-minutes: 5
run: task dockerRunTestingCluster
- name: Run Integration Tests
timeout-minutes: 20
run: task jvmIntegrationTest
- name: Cluster Logs
timeout-minutes: 1
if: always()
run: task dockerLogTestingCluster
- name: Stop Cluster
timeout-minutes: 1
if: always()
run: task dockerStopTestingCluster
test-python:
name: Test Python Client Code
runs-on:
- ubuntu-22.04
steps:
- uses: actions/checkout@v3
timeout-minutes: 1
- uses: actions/setup-java@v3
timeout-minutes: 1
with:
distribution: 'adopt'
java-version: 21
cache: 'sbt'
- uses: actions/setup-python@v4
timeout-minutes: 1
with:
python-version: '3.10.8'
cache: 'pip'
- uses: arduino/setup-task@v1
timeout-minutes: 1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Increase MMAP Limits
timeout-minutes: 1
run: sudo sysctl -w vm.max_map_count=262144
- name: Docs
timeout-minutes: 1
run: task pyDocs
- name: Run Cluster
timeout-minutes: 5
run: task dockerRunTestingCluster
- name: Test
timeout-minutes: 1
run: task pyTest
- name: Cluster Logs
timeout-minutes: 1
if: always()
run: task dockerLogTestingCluster
- name: Stop Cluster
timeout-minutes: 1
if: always()
run: task dockerStopTestingCluster
test-benchmarks:
name: Test Benchmarks
runs-on:
- ubuntu-22.04
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
timeout-minutes: 1
- uses: actions/setup-java@v3
timeout-minutes: 1
with:
distribution: 'adopt'
java-version: 21
cache: 'sbt'
- uses: arduino/setup-task@v1
timeout-minutes: 1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-python@v4
timeout-minutes: 1
with:
python-version: '3.10.8'
cache: 'pip'
- name: Increase MMAP Limits
timeout-minutes: 1
run: sudo sysctl -w vm.max_map_count=262144
- name: Initialize Submodule
timeout-minutes: 1
run: task annbCreateSubmodule
- name: Install Dependencies
timeout-minutes: 1
run: task annbInstallRequirements
- name: Run Cluster
timeout-minutes: 5
run: task dockerRunTestingCluster
- name: Test
timeout-minutes: 5
run: task annbTest
- name: Cluster Logs
timeout-minutes: 1
if: always()
run: task dockerLogTestingCluster
- name: Stop Cluster
timeout-minutes: 1
if: always()
run: task dockerStopTestingCluster
test-jekyll-site:
name: Test Jekyll Site
runs-on:
- ubuntu-22.04
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
timeout-minutes: 1
- uses: arduino/setup-task@v1
timeout-minutes: 1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Compile Jekyll Site
run: |
sudo chown -R runneradmin:runneradmin docs
task docsCompile
sudo chown -R runner:docker docs
ls -la docs/*