This repository has been archived by the owner on Aug 25, 2024. It is now read-only.
forked from LangStream/langstream
-
Notifications
You must be signed in to change notification settings - Fork 0
209 lines (191 loc) · 6.56 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
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
206
207
208
209
# Copyright DataStax, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
name: LangStream CI
on:
pull_request:
branches:
- main
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
tests:
name: Unit tests (${{ matrix.name }})
runs-on: ubuntu-latest
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
include:
- name: Runtime
- name: Runtime IT
- name: Deployer
- name: Api Gateway
- name: Control plane
- name: Other
- name: Style
steps:
- name: 'Setup: checkout project'
uses: actions/checkout@v2
- name: 'Setup: Java 17'
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17.x'
- name: 'Setup: Python 3.11'
uses: actions/setup-python@v4
if: ${{ matrix.name == 'Runtime' }}
with:
python-version: '3.11'
cache: 'pip'
- name: 'Init: cache local Maven repository'
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: 'Init: install python tools'
if: ${{ matrix.name == 'Runtime' }}
run: pip install -r requirements.txt
- name: 'Init: build project'
run: |
chmod +x mvnw
./mvnw -ntp clean install -DskipTests -PskipPython
- name: 'Test: Runtime'
if: ${{ matrix.name == 'Runtime' }}
run: |
./mvnw -ntp package -pl ":langstream-runtime-impl"
if [[ `git status --porcelain` ]]; then
echo "Found runtime impl changed after building, please build the runtime impl and commit the changes. "
git status
git diff
exit 1
fi
- name: 'Test: Runtime (Integration Tests)'
if: ${{ matrix.name == 'Runtime IT' }}
run: |
./mvnw -ntp package -pl ":langstream-runtime-base-docker-image" -Pdocker -DskipTests -PskipPython
./mvnw -ntp package -pl ":langstream-runtime-impl" -Pdocker -DskipTests -PskipPython
./mvnw -ntp failsafe:integration-test failsafe:verify -pl ":langstream-runtime-impl" -PskipPython
- name: 'Test: Api Gateway'
if: ${{ matrix.name == 'Api Gateway' }}
run: |
./mvnw -ntp verify -pl ":langstream-api-gateway" -Pdocker -PskipPython
- name: 'Test: Deployer'
if: ${{ matrix.name == 'Deployer' }}
run: |
./mvnw -ntp verify -f langstream-k8s-deployer -Pdocker -PskipPython
- name: 'Test: Control plane'
if: ${{ matrix.name == 'Control plane' }}
run: |
./mvnw -ntp verify -pl langstream-webservice -Pdocker -PskipPython
- name: 'Test: Other'
if: ${{ matrix.name == 'Other' }}
run: |
#/bin/bash
./mvnw -ntp verify -PtestSuiteOthers -PskipPython
- name: 'Test: Style'
if: ${{ matrix.name == 'Style' }}
run: |
#!/bin/bash
mvn clean install -DskipTests -PskipPython,generateDoc
if [[ `git status --porcelain` ]]; then
echo "Found changes after building, please re-build the CRDs or run ./mvnw spotless:apply and commit the changes. "
git status
git diff
exit 1
fi
# e2e-tests:
# name: End to End tests
# runs-on: LangStream-4-cores
# timeout-minutes: 45
# strategy:
# fail-fast: false
# matrix:
# include:
# - name: Python
# category: python
# - name: Other
# category: other
# steps:
# - name: 'Setup: checkout project'
# uses: actions/checkout@v2
# - name: 'Setup: Java 17'
# uses: actions/setup-java@v3
# with:
# distribution: 'temurin'
# java-version: '17.x'
# - name: 'Init: cache local Maven repository'
# uses: actions/cache@v2
# with:
# path: ~/.m2/repository
# key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
# restore-keys: |
# ${{ runner.os }}-maven-
# - name: Start minikube
# id: minikube
# uses: medyagh/setup-minikube@latest
# with:
# cpus: 4
# memory: 8192
# kubernetes-version: 1.26.3
# - uses: azure/setup-helm@v3
# with:
# version: v3.7.0
# - uses: azure/setup-kubectl@v3
# - name: Build docker
# run: |
# chmod +x mvnw
# uname -m
# ./dev/prepare-minikube-for-e2e-tests.sh
# - name: Run tests
# run: |
# chmod +x mvnw
# ./mvnw -ntp install -pl langstream-e2e-tests -am -DskipTests
# export LANGSTREAM_TESTS_CLI_BIN=$(pwd)/bin/langstream
# ./mvnw -ntp verify -pl langstream-e2e-tests -De2eTests -Dgroups="${{ matrix.category }}" -Dlangstream.tests.recycleenv=true
# - name: Upload Surefire reports
# uses: actions/upload-artifact@v3
# if: failure()
# continue-on-error: true
# with:
# name: test-logs-e2e
# path: "**/target/e2e-test-logs/*"
# retention-days: 7
# cli-e2e-tests:
# name: CLI End to End tests
# runs-on: ubuntu-latest
# timeout-minutes: 45
# steps:
# - name: 'Setup: checkout project'
# uses: actions/checkout@v2
# - name: 'Setup: Java 17'
# uses: actions/setup-java@v3
# with:
# distribution: 'temurin'
# java-version: '17.x'
# - name: Run tests
# run: |
# set -e
# ./docker/build.sh runtime-base-docker-image
# ./docker/build.sh runtime
# ./docker/build.sh runtime-tester
# ./mvnw -ntp install -pl langstream-e2e-tests -DskipTests -Dspotless.skip -Dlicense.skip
# export LANGSTREAM_TESTS_CLI_BIN=$(pwd)/bin/langstream
# ./mvnw -ntp verify -pl langstream-e2e-tests -De2eTests -Dgroups="cli"