Skip to content

Commit 2785406

Browse files
committed
Cargo update
1 parent 69ed9ec commit 2785406

File tree

2 files changed

+18
-14
lines changed

2 files changed

+18
-14
lines changed

Cargo.lock

+11-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Makefile

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
11
UPLOAD_LAMBDA = vertragsservice-upload-lambda
22
UUID_LAMBDA = vertragsservice-uuid-lambda
33
IR_LAMBDA = vertragsservice-ir-lambda
4+
LAMBDA_LIB = vertragsservice-bipro-lambda-lib
45

56
build:
67
cargo build --features "sqs s3 gzip sentry_log transaction_id"
78
test:
89
cargo test --features "sqs s3 gzip sentry_log transaction_id"
910
update_all:
11+
git pull
1012
cargo update
11-
cd ../$(UPLOAD_LAMBDA) && cargo update
12-
cd ../$(UUID_LAMBDA) && cargo update
13-
cd ../$(IR_LAMBDA) && cargo update
13+
cargo test
14+
cd ../$(LAMBDA_LIB) && make update
15+
cd ../$(UPLOAD_LAMBDA) && make update
16+
cd ../$(UUID_LAMBDA) && make update
17+
cd ../$(IR_LAMBDA) && make update
1418
build_all:
1519
cd ../$(UPLOAD_LAMBDA) && cargo build
1620
cd ../$(UUID_LAMBDA) && cargo build

0 commit comments

Comments
 (0)