-
Notifications
You must be signed in to change notification settings - Fork 10
/
justfile
261 lines (184 loc) · 6.79 KB
/
justfile
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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
############################################################
# Just (https://github.com/casey/just) commands for
# building, testing and releasing the Verdict-as-a-Service
# libraries project.
#
# You can switch into a development shell with all the
# necessary dependencies by running `nix develop`.
#
# Commands can be listed with `just --list` and run with
# `just <command>`.
############################################################
############################################################
# General commands & variables
############################################################
version := "0.0.0"
# Copy a `.env` file from the root directory to all
# language directories. For the C++ SDK, an `.cpp.env` is
# required, as the C++ SDK needs different credentials to
# be run in the statigin environment.
# ATTENTION: The `.env` & `.cpp.env` has to be placed manually in the
# root directory, as secrets must not be checked into
# the git repository.
populate-env:
mkdir -p cpp/build && cp .cpp.env cpp/build/.env
cp .env rust/.env
cp .env typescript/.env
cp .env dotnet/.env
cp .env python/.env
cp .env golang/vaas/.env
cp .env golang/vaas/v2/.env
cp .env golang/vaas/v2/examples/file-verdict-request/.env
cp .env golang/vaas/v2/pkg/vaas/.env
cp .env golang/vaas/v2/pkg/authenticator/.env
cp .env golang/vaas/pkg/authenticator/.env
cp .env golang/vaas/pkg/vaas/.env
cp .env java/.env
cp .env php/tests/vaas/.env
cp .env ruby/test/.env
cp .env shell/.env
############################################################
# Commands for all languages at once.
############################################################
build-all: build-rust build-ts build-dotnet build-go build-java build-ruby build-cpp
test-all: test-rust test-ts test-dotnet test-go test-python test-php test-java test-ruby test-cpp
clean-all: clean-rust clean-ts clean-dotnet clean-go clean-python clean-php clean-java clean-ruby clean-cpp
############################################################
# Rust commands
############################################################
build-rust:
cd rust && cargo build && cd -
test-rust:
cd rust && cargo test --all && cd -
clean-rust:
cd rust && cargo clean && cd -
release-rust:
git tag -a rs{{version}} -m "Release Rust SDK {{version}}" && git push origin rs{{version}}
############################################################
# TypeScript commands
############################################################
install-ts:
cd typescript && npm install && cd -
build-ts: install-ts
cd typescript && npm run build && cd -
test-ts: install-ts
cd typescript && npm run test && cd -
clean-ts:
cd typescript && rm -rf node_modules && cd -
release-ts:
git tag -a ts{{version}} -m "Release TypeScript SDK {{version}}" && git push origin ts{{version}}
############################################################
# .NET commands
############################################################
build-dotnet:
cd dotnet/Vaas && dotnet build && cd -
test-dotnet:
cd dotnet/Vaas && dotnet test && cd -
clean-dotnet:
cd dotnet/Vaas && dotnet clean && cd -
release-dotnet:
git tag -a cs{{version}} -m "Release .NET SDK {{version}}" && git push origin cs{{version}}
############################################################
# Go commands
############################################################
install-go:
cd golang/vaas/v2 && go mod download && cd -
build-go: install-go
cd golang/vaas/v2 && go build ./... && cd -
test-go: build-go
cd golang/vaas/v2 && go test -race ./... && cd -
clean-go:
cd golang/vaas/v2 && go clean ./... && cd -
release-go:
git tag -a golang/vaas/v{{version}} -m "Release Go SDK {{version}}" && git push origin golang/vaas/v{{version}}
############################################################
# Python commands
############################################################
virtualenv-python:
cd python && python3 -m venv venv && cd -
install-python: virtualenv-python
cd python && source venv/bin/activate && pip3 install -r requirements.txt && cd -
test-python: install-python
cd python && source venv/bin/activate && python -m unittest -v tests/test_* && cd -
clean-python:
cd python && rm -rf ./venv && cd -
release-python:
git tag -a py{{version}} -m "Release Python SDK {{version}}" && git push origin py{{version}}
############################################################
# PHP commands
############################################################
install-php:
cd php/tests/vaas && composer install && cd -
test-php: install-php
cd php/tests/vaas && ./vendor/bin/phpunit --color --testdox && cd -
clean-php:
cd php/tests/vaas && rm -rf vendor && cd -
release-php:
git tag -a php{{version}} -m "Release PHP SDK {{version}}" && git push origin php{{version}}
############################################################
# Java commands
############################################################
build-java:
cd java && gradle build -x test && cd -
test-java:
cd java && gradle clean build && cd -
clean-java:
cd java && gradle clean && cd -
release-java:
git tag -a java{{version}} -m "Release Java SDK {{version}}" && git push origin java{{version}}
############################################################
# Ruby commands
############################################################
build-ruby:
cd ruby && gem build vaas.gemspec && cd -
install-ruby: build-ruby
cd ruby && gem install --dev "vaas-0.0.1.gem" && cd -
test-ruby: install-ruby
cd ruby/test && ruby vaas_test.rb && cd -
clean-ruby:
cd ruby && gem clean && cd -
release-ruby:
git tag -a rb{{version}} -m "Release Ruby SDK {{version}}" && git push origin rb{{version}}
############################################################
# C++ commands
############################################################
build-cpp:
cd cpp && cd build && cmake .. && make && cd -
test-cpp: build-cpp
cd cpp/build && ./vaas_test --exit=true && cd -
clean-cpp:
cd cpp && rm -rf build && cd -
release-cpp:
git tag -a cpp{{version}} -m "Release C++ SDK {{version}}" && git push origin cpp{{version}}
############################################################
# Just aliases
############################################################
alias pa := populate-env
alias ba := build-all
alias ta := test-all
alias ca := clean-all
alias brs := build-rust
alias trs := test-rust
alias crs := clean-rust
alias bts := build-ts
alias tts := test-ts
alias cts := clean-ts
alias bdn := build-dotnet
alias tdn := test-dotnet
alias cdn := clean-dotnet
alias bgo := build-go
alias tgo := test-go
alias cgo := clean-go
alias tpy := test-python
alias cpy := clean-python
alias tph := test-php
alias cph := clean-php
alias bja := build-java
alias tja := test-java
alias cja := clean-java
alias brb := build-ruby
alias trb := test-ruby
alias crb := clean-ruby
alias bcp := build-cpp
alias tcp := test-cpp
alias ccp := clean-cpp