-
Notifications
You must be signed in to change notification settings - Fork 912
93 lines (81 loc) · 3.13 KB
/
bsd.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
name: FreeBSD Test
on:
push:
branches:
- "master"
pull_request:
jobs:
testfreebsd:
runs-on: ubuntu-latest
name: Build and test on FreeBSD
timeout-minutes: 120
strategy:
fail-fast: true
matrix:
bitcoind-version: ["27.1"]
steps:
- uses: actions/checkout@v4
- name: Test in FreeBSD
id: test
uses: vmactions/freebsd-vm@v1
with:
usesh: true
prepare: |
pkg install -y \
bash \
wget \
py38-pip \
py38-sqlite3 \
gmake \
git \
python \
postgresql12-server \
autoconf \
automake \
libtool \
bash \
gettext \
sqlite3 \
lowdown \
curl
bash -c "echo Hello from bash"
/usr/bin/bash -c "echo Hello from /usr/bin/bash"
# curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain nightly-2021-08-3z1
# cd /tmp/ || exit 1
# wget https://bitcoincore.org/bin/bitcoin-core-${{ matrix.bitcoind-version }}/bitcoin-${{ matrix.bitcoind-version }}-x86_64-linux-gnu.tar.gz
# tar -xf bitcoin-${{ matrix.bitcoind-version }}-x86_64-linux-gnu.tar.bz2
# sudo mv bitcoin-${{ matrix.bitcoind-version }}/bin/* /usr/local/bin
# rm -rf bitcoin-${{ matrix.bitcoind-version }}-x86_64-linux-gnu.tar.gz bitcoin-${{ matrix.bitcoind-version }}
run: |
pwd
ls -la
# PATH=/root/.local/bin:$PATH
# pip install --user -U wheel pip
# pip install --user -U -r requirements.txt
# # Install utilities that aren't dependencies, but make
# # running tests easier/feasible on CI (and pytest which
# # keeps breaking the rerunfailures plugin).
# pip install --user -U \
# blinker \
# flake8 \
# mako \
# pytest-sentry \
# pytest-test-groups==1.0.3 \
# pytest-custom-exit-code==0.3.0 \
# pytest-json-report
# git clone https://github.com/lightning/bolts.git ../bolts
# # fatal: unsafe repository ('/Users/runner/work/lightning/lightning' is owned by someone else)
# git config --global --add safe.directory `pwd`
# git submodule update --init --recursive
# ./configure CC="$CC" --disable-valgrind
# cat config.vars
# cat << EOF > pytest.ini
# [pytest]
# addopts=-p no:logging --color=yes --timeout=1800 --timeout-method=thread --test-group-random-seed=42 --junitxml=report.xml --json-report --json-report-file=report.json --json-report-indent=2
# markers =
# slow_test: marks tests as slow (deselect with '-m "not slow_test"')
# EOF
# # Just run a "quick" test without memory checking
# gmake
# # Clean up to maximize rsync's chances of succeeding
# gmake clean