-
Notifications
You must be signed in to change notification settings - Fork 1
/
justfile
126 lines (87 loc) · 2.64 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
set shell := ["bash", "-uc"]
export TAG := `cat Cargo.toml | grep '^version =' | cut -d " " -f3 | xargs`
# prints out the currently set version
version:
#!/usr/bin/env bash
echo "v$TAG"
# clippy lint + check with minimal versions from nightly
check:
#!/usr/bin/env bash
set -euxo pipefail
clear
cargo update
echo 'Clippy with default'
cargo +nightly clippy -- -D warnings
echo 'Clippy with s3'
cargo +nightly clippy --features s3 -- -D warnings
echo 'Clippy with streaming'
cargo +nightly clippy --features streaming -- -D warnings
echo 'Clippy with cli'
cargo +nightly clippy --features cli -- -D warnings
echo 'Checking minimal versions'
cargo minimal-versions check
# runs tests without s3
test:
#!/usr/bin/env bash
set -euxo pipefail
clear
cargo test
# runs the full set of tests
test-full:
#!/usr/bin/env bash
set -euxo pipefail
clear
cargo test
cargo test test_file_to_s3_to_file -- --ignored
# builds the code
build:
#!/usr/bin/env bash
set -euxo pipefail
# build as musl to make sure this works
cargo build --features cli --release --target x86_64-unknown-linux-musl
# this needs mingw32 to be installed:
# sudo dnf install mingw32-gcc mingw64-gcc -y
cargo build --features cli --release --target x86_64-pc-windows-gnu
#git add out/*
# builds binaries
build-binaries: build
#!/usr/bin/env bash
set -euxo pipefail
cp target/x86_64-unknown-linux-musl/release/cryptr out/cryptr_{{TAG}}
cp target/x86_64-pc-windows-gnu/release/cryptr.exe out/cryptr_{{TAG}}.exe
git add -f out/*
# verifies the MSRV
msrv-verify:
cargo msrv verify
# find's the new MSRV, if it needs a bump
msrv-find:
cargo msrv --min 1.72.1
# verify thats everything is good
verify: check test-full build msrv-verify
# makes sure everything is fine
verfiy-is-clean: verify
#!/usr/bin/env bash
set -euxo pipefail
# make sure everything has been committed
git diff --exit-code
echo all good
# sets a new git tag and pushes it
release: verfiy-is-clean build-binaries
#!/usr/bin/env bash
set -euxo pipefail
git tag "v$TAG"
git push origin "v$TAG"
# publishes the current version to cargo.io
publish: verfiy-is-clean
#!/usr/bin/env bash
set -euxo pipefail
# We must delete the pre-built binaries to not push them to crates.io
rm -rf out/*
cargo publish
# dry run for publishing to crates.io
publish-dry: verfiy-is-clean
#!/usr/bin/env bash
set -euxo pipefail
# We must delete the pre-built binaries to not push them to crates.io
rm -rf out/*
cargo publish --dry-run