-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathstart_release.sh
executable file
·77 lines (59 loc) · 1.91 KB
/
start_release.sh
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
#!/bin/bash -eu
# Check if exactly one argument is provided
if [ "$#" -ne 1 ]; then
echo 1>&2 "USAGE: start_release.sh N.N.N"
exit 1
fi
# Go to the directory of this script
cd $( dirname ${BASH_SOURCE[0]} )
# Check if the provided argument matches the version pattern
REGEX_VERSION='^\d+\.\d+\.\d+$'
MATCHES=$(echo "$1" | egrep $REGEX_VERSION | wc -l)
if [ $MATCHES -eq 0 ]; then
echo 1>&2 "Version \"$1\" must be N.N.N"
exit 1
fi
echo
echo
echo "Current Dafny Version:"
dafny --version
echo
echo
sleep 2
# Update the version in Cargo.toml
perl -pe "s/^version = .*$/version = \"$1\"/" < Cargo.toml > new_Cargo.toml
mv new_Cargo.toml Cargo.toml
set -v
# Remove all files and directories in src except for specified files
find src -depth 1 | egrep -v '(lib.rs|README.md)' | xargs rm -rf
# Change to the parent directory and run make polymorph and transpile commands
cd ../..
make polymorph_rust transpile_rust test_rust test_rust_debug
# Remove target directory
cd runtimes/rust
rm -rf target
# Remove existing release directory and copy current directory to releases
rm -rf ../../../releases/rust/esdk
cp -r . ../../../releases/rust/esdk
# Go to the release directory
cd ../../../releases/rust/esdk
# Remove unnecessary files and directories
rm -rf *~ copy_externs.sh upgrade_examples.sh start_release.sh test_published.sh test_examples *.pem RELEASE.md CHANGELOG.md src/README.md
# Create .gitignore file with specified entries
echo Cargo.lock > .gitignore
echo target >> .gitignore
# format the generated code
cargo fmt
# clippy shuld run clean
cargo clippy
cargo clippy --example main
# replace local path with latest dafny-runtime from crates.io
cargo rm dafny_runtime
cargo add dafny-runtime -F sync
# Run cargo test and example tests
cargo test --release
cargo run --release --example main
cargo test
cargo test --release --examples
# Remove Cargo.lock and .pem files after testing the examples
rm -f Cargo.lock *.pem