File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ pull_request :
6+
7+ jobs :
8+ build :
9+ runs-on : ubuntu-24.04
10+ timeout-minutes : 20
11+ steps :
12+ - uses : actions/checkout@v6
13+ - name : Uninstall Docker, per https://documentation.ubuntu.com/lxd/latest/howto/network_bridge_firewalld/#prevent-connectivity-issues-with-lxd-and-docker
14+ run : |
15+ sudo systemctl stop docker.service docker.socket containerd.service
16+ sudo apt-get purge -y docker-ce docker-ce-cli containerd.io
17+ # Clean up any leftover iptables rules Docker might have left
18+ sudo iptables -P FORWARD ACCEPT
19+ sudo iptables -F
20+ - name : Install Snapcraft and LXD
21+ run : |
22+ sudo snap install snapcraft --classic
23+ sudo snap install lxd
24+ sudo /snap/bin/lxd init --auto
25+ - name : Pull Snap dependencies
26+ run : sudo snapcraft pull --use-lxd
27+ - name : Build Snap
28+ run : sudo snapcraft pack --use-lxd
Original file line number Diff line number Diff line change 11name : bitcoin-core
2- version : ' 29.3 '
2+ version : ' 29.4 '
33summary : Fully validating Bitcoin peer-to-peer network node, wallet and GUI
44description : |
55 Bitcoin Core connects to the Bitcoin peer-to-peer network to download and
8383 curl -LO https://bitcoincore.org/bin/bitcoin-core-${SNAPCRAFT_PROJECT_VERSION}/SHA256SUMS
8484 curl -LO https://bitcoincore.org/bin/bitcoin-core-${SNAPCRAFT_PROJECT_VERSION}/bitcoin-${SNAPCRAFT_PROJECT_VERSION}.tar.gz
8585 curl -LO https://bitcoincore.org/bin/bitcoin-core-${SNAPCRAFT_PROJECT_VERSION}/bitcoin-${SNAPCRAFT_PROJECT_VERSION}-${SNAPCRAFT_ARCH_TRIPLET}.tar.gz
86- echo "70a1679db503b1bd846b92970f087410fac76394ec8a14d2872d9744a66ac6b1 SHA256SUMS" | sha256sum --check
86+ echo "3c337c35aca1a0dcbb9438d97240cc6df0a1b9f17ba7eaf404ac63106e9598d7 SHA256SUMS" | sha256sum --check
8787 sha256sum --ignore-missing --check SHA256SUMS
8888 tar -xvf bitcoin-${SNAPCRAFT_PROJECT_VERSION}-${SNAPCRAFT_ARCH_TRIPLET}.tar.gz
8989 tar -xvf bitcoin-${SNAPCRAFT_PROJECT_VERSION}.tar.gz
You can’t perform that action at this time.
0 commit comments