-
Notifications
You must be signed in to change notification settings - Fork 33
80 lines (70 loc) · 2.44 KB
/
integration.yml
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
# Runs Alloy integration tests daily to ensure compatibility with the latest version of Alloy.
name: Integration
on:
schedule:
# Run daily
- cron: "0 0 * * *"
workflow_dispatch:
# Needed so we can run it manually
jobs:
integration:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: foundry-rs/foundry-toolchain@v1
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: Run examples
run: |
# Get the list of runable examples
export examples="$(
cargo run --example 2>&1 \
| grep -E '^ ' \
| grep -v \
-e 'any_network' \
-e 'trezor_signer' \
-e 'ledger_signer' \
-e 'yubi_signer' \
-e 'builtin' \
-e 'ipc' \
-e 'ws' \
-e 'ws_auth' \
-e 'subscribe_logs' \
-e 'subscribe_all_logs' \
-e 'subscribe_pending_transactions' \
-e 'trace_call' \
-e 'trace_transaction' \
| xargs -n1 echo
)"
# Run the examples with the current version of Alloy
for example in $examples; do
cargo run --example $example --quiet 1>/dev/null
if [ $? -ne 0 ]; then
echo "Failed to run: $example"
exit 1
else
echo "Successfully ran: $example"
fi
done
# Fetch the latest commit hash of the `main` branch from the Alloy repository
export latest_alloy_commit=$(git ls-remote https://github.com/alloy-rs/alloy.git \
| grep refs/heads/main \
| cut -f 1)
# Use the commit hash to update the rev in Cargo.toml
sed -i '/alloy = { version = "0.1.2", features = \[/,/\] }/s/alloy = { version = "0.1.2",/alloy = { git = "https:\/\/github.com\/alloy-rs\/alloy", rev = "'"$latest_alloy_commit"'",/' \
Cargo.toml
# Update to the latest commit
cargo update
# Run the examples with the latest version of Alloy
for example in $examples; do
cargo run --example $example --quiet 1>/dev/null
if [ $? -ne 0 ]; then
echo "Failed to run: $example"
exit 1
else
echo "Successfully ran: $example"
fi
done