-
Notifications
You must be signed in to change notification settings - Fork 33
151 lines (125 loc) · 3.87 KB
/
workflow.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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
name: Check
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install rust-toolchain
uses: actions-rs/[email protected]
with:
toolchain: stable
- name: Install go
uses: actions/setup-go@v5
with:
go-version: "stable"
- name: Install .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Setup Python and install embit
uses: actions/setup-python@v5
with:
python-version: '3.11'
- run: |
python -m pip install --upgrade pip
pip install -r modules/embit/embit_lib/requirements.txt
- name: Install LLVM and Clang
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 18
sudo ln -sfT clang++-18 /usr/bin/clang++
sudo ln -sfT clang-18 /usr/bin/clang
shell: bash
- name: Install Boost
run: |
sudo apt install libboost-all-dev
- name: Setup common environment
run: |
export CC=/usr/bin/clang
export CXX=/usr/bin/clang++
echo "CC=/usr/bin/clang" >> $GITHUB_ENV
echo "CXX=/usr/bin/clang++" >> $GITHUB_ENV
- name: Build - Bitcoin Core
timeout-minutes: 40
run: |
export BOOST_LIB_DIR=/usr/lib/x86_64-linux-gnu/
cd modules/bitcoin && make
- name: Build - rust bitcoin
timeout-minutes: 5
run: |
rustup default nightly
cd modules/rustbitcoin && make cargo && make
- name: Build - rust miniscript
timeout-minutes: 5
run: |
rustup default nightly
cd modules/rustminiscript && make cargo && make
- name: Build - btcd
timeout-minutes: 5
run: |
cd modules/btcd && make
- name: Build - embit
timeout-minutes: 5
run: |
cd modules/embit && make
- name: Build - lnd
timeout-minutes: 5
run: |
cd modules/lnd && make
- name: Build - ldk
timeout-minutes: 5
run: |
rustup default nightly
cd modules/ldk && make cargo && make
- name: Build - nlightning
timeout-minutes: 5
run: |
cd modules/nlightning && make
- name: Test - script
timeout-minutes: 5
run: |
export CXXFLAGS="-DBITCOIN_CORE -DRUST_BITCOIN"
make
FUZZ=script ./bitcoinfuzz -runs=100
- name: Test - deserialize_block
timeout-minutes: 5
run: |
export CXXFLAGS="-DBITCOIN_CORE -DRUST_BITCOIN -DBTCD"
make
FUZZ=deserialize_block ./bitcoinfuzz -runs=100
- name: Test - script_eval
timeout-minutes: 5
run: |
export CXXFLAGS="-DBITCOIN_CORE -DBTCD"
make
FUZZ=script_eval ./bitcoinfuzz -runs=100
- name: Test - descriptor_parse
timeout-minutes: 5
run: |
export CXXFLAGS="-DBITCOIN_CORE -DRUST_MINISCRIPT"
make
FUZZ=descriptor_parse ./bitcoinfuzz -runs=100
- name: Test - miniscript_parse
run: |
export CXXFLAGS="-DBITCOIN_CORE -DRUST_MINISCRIPT -DEMBIT"
make
FUZZ=miniscript_parse ./bitcoinfuzz -runs=100
- name: Test - script_asm
run: |
export CXXFLAGS="-DBITCOIN_CORE -DBTCD"
make
FUZZ=script_asm ./bitcoinfuzz -runs=100
- name: Test - deserialize_invoice
run: |
export CXXFLAGS="-DLDK -DLND -DNLIGHTNING"
make
FUZZ=deserialize_invoice ./bitcoinfuzz -runs=100