-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathJustfile
125 lines (106 loc) · 2.9 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
#!/usr/bin/env just --justfile
build-rust-build-image:
#!/usr/bin/env bash
(
cd resources/packer/build
packer init .
packer build build.pkr.hcl
)
build-evm-node-image:
#!/usr/bin/env bash
(
cd resources/packer/build
packer init .
packer build \
-var 'size=s-4vcpu-8gb' \
-var 'snapshot_name=evm-node' \
build.pkr.hcl
)
build-peer-cache-image:
#!/usr/bin/env bash
(
cd resources/packer/node
packer init .
packer build -var 'size=s-1vcpu-2gb' node.pkr.hcl
)
build-node-image:
#!/usr/bin/env bash
(
cd resources/packer/node
packer init .
packer build -var 'size=s-2vcpu-4gb' node.pkr.hcl
)
build-uploader-image:
#!/usr/bin/env bash
(
cd resources/packer/node
packer init .
packer build -var 'size=s-2vcpu-4gb' node.pkr.hcl
)
build-nat-gateway-image:
#!/usr/bin/env bash
(
cd resources/packer/node
packer init .
packer build -var 'size=s-1vcpu-2gb' node.pkr.hcl
)
# This target has been copied from another repository. On other repositories, more than one
# architecture is supported. If we want to extend for other architectures, we can do so.
build-release-artifacts arch:
#!/usr/bin/env bash
set -e
arch="{{arch}}"
supported_archs=(
"x86_64-unknown-linux-musl"
)
arch_supported=false
for supported_arch in "${supported_archs[@]}"; do
if [[ "$arch" == "$supported_arch" ]]; then
arch_supported=true
break
fi
done
if [[ "$arch_supported" == "false" ]]; then
echo "$arch is not supported."
exit 1
fi
if [[ "$arch" == "x86_64-unknown-linux-musl" ]]; then
if [[ "$(grep -E '^NAME="Ubuntu"' /etc/os-release)" ]]; then
# This is intended for use on a fresh Github Actions agent
sudo apt update -y
sudo apt install -y musl-tools
fi
rustup target add x86_64-unknown-linux-musl
fi
rm -rf artifacts
mkdir artifacts
cargo clean
cargo build --release --target $arch
find target/$arch/release -maxdepth 1 -type f -exec cp '{}' artifacts \;
rm -f artifacts/.cargo-lock
upload-release-assets-to-s3:
#!/usr/bin/env bash
set -e
cd deploy/testnet-deploy
for file in *.zip *.tar.gz; do
aws s3 cp "$file" "s3://sn-testnet-deploy/$file" --acl public-read
done
package-release-assets:
#!/usr/bin/env bash
set -e
architectures=(
"x86_64-unknown-linux-musl"
)
bin="testnet-deploy"
version=$(cat Cargo.toml | grep "^version" | awk -F '=' '{ print $2 }' | xargs)
rm -rf deploy/$bin
find artifacts/ -name "$bin" -exec chmod +x '{}' \;
for arch in "${architectures[@]}" ; do
echo "Packaging for $arch..."
if [[ $arch == *"windows"* ]]; then bin_name="${bin}.exe"; else bin_name=$bin; fi
zip -j $bin-$version-$arch.zip artifacts/$arch/release/$bin_name
tar -C artifacts/$arch/release -zcvf $bin-$version-$arch.tar.gz $bin_name
done
mkdir -p deploy/$bin
mv *.tar.gz deploy/$bin
mv *.zip deploy/$bin