-
Notifications
You must be signed in to change notification settings - Fork 371
181 lines (167 loc) · 6.04 KB
/
Copy pathci.yml
File metadata and controls
181 lines (167 loc) · 6.04 KB
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
name: CI
on: [push, pull_request]
jobs:
lint-console:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9.0.6
run_install: |
- recursive: true
args: [--frozen-lockfile, --strict-peer-dependencies]
- name: Run prettier
run: |
cd webui
pnpm check
build-rust:
runs-on: ubuntu-22.04-32
env:
DATABASE_URL: "postgres://arroyo:arroyo@localhost:5432/arroyo"
steps:
- name: Check out
uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: "17"
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
components: clippy, rustfmt
toolchain: 1.95
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Check Formatting
run: cargo fmt -- --check
- uses: actions/setup-python@v5
name: Setup Python
with:
python-version: "3.12"
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9.0.6
run_install: |
- recursive: true
args: [--frozen-lockfile, --strict-peer-dependencies]
- name: Install OpenAPI Generator
run: |
pnpm install @openapitools/openapi-generator-cli -g
cd crates/arroyo-openapi && openapi-generator-cli version
- name: Setup Postgres
run: |
sudo apt-get update
sudo apt-get install postgresql
sudo systemctl start postgresql
sudo -u postgres psql -c "CREATE USER arroyo WITH PASSWORD 'arroyo' SUPERUSER;"
sudo -u postgres createdb arroyo
pushd /tmp
wget https://github.com/rust-db/refinery/releases/download/0.8.7/refinery-0.8.7-x86_64-unknown-linux-musl.tar.gz
tar xvfz refinery*.tar.gz
mv /tmp/refinery*-musl/refinery /tmp
popd
/tmp/refinery migrate -e DATABASE_URL -p crates/arroyo-api/migrations
- name: Install dependencies
run: |
curl -LsSf https://get.nexte.st/latest/linux | tar zxf - -C ${CARGO_HOME:-~/.cargo}/bin
sudo apt-get install -y cmake clang ruby unzip postgresql libsasl2-dev libcurl4-openssl-dev netcat
wget https://github.com/protocolbuffers/protobuf/releases/download/v21.8/protoc-21.8-linux-x86_64.zip
unzip protoc*.zip
sudo mv bin/protoc /usr/local/bin
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- name: Install Kafka
run: |
wget --progress=dot --show-progress -O kafka.tgz 'https://www.apache.org/dyn/closer.lua/kafka/4.3.1/kafka_2.13-4.3.1.tgz?action=download'
tar xvfz kafka.tgz
mkdir /tmp/kraft-combined-logs
kafka_*/bin/kafka-storage.sh format --standalone -t 9v5PspiySuWU2l5NjTgRuA -c kafka_*/config/server.properties
kafka_*/bin/kafka-server-start.sh -daemon kafka_*/config/server.properties
- name: Install mosquitto
run: |
sudo apt-get install -y mosquitto
sudo service mosquitto start
- name: Check Formatting
run: cargo fmt -- --check
- name: Build console
run: |
cd webui
pnpm build
- name: Build
run: cargo build --all-features
- name: Run Clippy
run: cargo clippy --no-deps --all-features --all-targets --workspace -- -D warnings
- name: Test
run: cargo nextest run -E 'kind(lib)' --all-features
- name: Integ
run: |
set -euo pipefail
cluster_pid=""
cleanup_cluster() {
if [ -n "${cluster_pid}" ]; then
kill "${cluster_pid}" 2>/dev/null || true
wait "${cluster_pid}" 2>/dev/null || true
cluster_pid=""
fi
killall arroyo 2>/dev/null || true
}
trap cleanup_cluster EXIT
run_integ() {
name="$1"
shift
echo "Starting integration scenario: ${name}"
cleanup_cluster
rm -rf "/tmp/arroyo-integ-${name}"
mkdir -p "/tmp/arroyo-integ-${name}" /tmp/artifacts
env \
ARROYO__DISABLE_TELEMETRY=true \
ARROYO__CHECKPOINT_URL="file:///tmp/arroyo-integ-${name}" \
ARROYO__COMPILER__ARTIFACT_URL=file:///tmp/artifacts \
"$@" \
target/debug/arroyo cluster &
cluster_pid=$!
timeout=20
while ! nc -z localhost 5115 && [ "${timeout}" -gt 0 ]; do
sleep 1
timeout=$((timeout - 1))
done
if [ "${timeout}" -le 0 ]; then
echo "Timed out waiting for integration scenario ${name} to start"
cleanup_cluster
return 1
fi
status=0
cargo nextest run --package integ -E 'kind(test)' || status=$?
cleanup_cluster
return "${status}"
}
run_integ controller-postgres ARROYO__DATABASE__TYPE=postgres
run_integ controller-sqlite ARROYO__DATABASE__TYPE=sqlite
run_integ leader-postgres ARROYO__DATABASE__TYPE=postgres ARROYO__JOB_CONTROLLER=worker
run_integ leader-sqlite ARROYO__DATABASE__TYPE=sqlite ARROYO__JOB_CONTROLLER=worker
build-console:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9.0.6
run_install: |
- recursive: true
args: [--frozen-lockfile, --strict-peer-dependencies]
- name: Build console
run: |
cd webui
pnpm build