Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 0 additions & 17 deletions .cirrus.yml

This file was deleted.

28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CI

on:
push:
pull_request:

jobs:
build:
runs-on: ubuntu-24.04
timeout-minutes: 20
steps:
- uses: actions/checkout@v6
- name: Uninstall Docker, per https://documentation.ubuntu.com/lxd/latest/howto/network_bridge_firewalld/#prevent-connectivity-issues-with-lxd-and-docker
run: |
sudo systemctl stop docker.service docker.socket containerd.service
sudo apt-get purge -y docker-ce docker-ce-cli containerd.io
# Clean up any leftover iptables rules Docker might have left
sudo iptables -P FORWARD ACCEPT
sudo iptables -F
- name: Install Snapcraft and LXD
run: |
sudo snap install snapcraft --classic
sudo snap install lxd
sudo /snap/bin/lxd init --auto
- name: Pull Snap dependencies
run: sudo snapcraft pull --use-lxd
- name: Build Snap
run: sudo snapcraft pack --use-lxd
4 changes: 2 additions & 2 deletions snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: bitcoin-core
version: '30.2'
version: '30.3'
summary: Fully validating Bitcoin peer-to-peer network node, wallet and GUI
description: |
Bitcoin Core connects to the Bitcoin peer-to-peer network to download and
Expand Down Expand Up @@ -73,7 +73,7 @@ parts:
curl -LO https://bitcoincore.org/bin/bitcoin-core-${bitcoin_core_version}/SHA256SUMS
curl -LO https://bitcoincore.org/bin/bitcoin-core-${bitcoin_core_version}/bitcoin-${bitcoin_core_version}.tar.gz
curl -LO https://bitcoincore.org/bin/bitcoin-core-${bitcoin_core_version}/bitcoin-${bitcoin_core_version}-${CRAFT_ARCH_TRIPLET_BUILD_FOR}.tar.gz
echo "11113f40ed9e963fbe98e37751818929a2dd53cea0588452fc0b9fbb24bf2405 SHA256SUMS" | sha256sum --check
echo "65583da837096bd21da59d34435342f61d92f01cc10325eb15c389118c14808a SHA256SUMS" | sha256sum --check
sha256sum --ignore-missing --check SHA256SUMS
tar -xvf bitcoin-${bitcoin_core_version}-${CRAFT_ARCH_TRIPLET_BUILD_FOR}.tar.gz
tar -xvf bitcoin-${bitcoin_core_version}.tar.gz
Expand Down