Skip to content

Commit c83e581

Browse files
committed
qml, doc: Re-add links to CI build artifacts
This reverts commit 9645d37.
1 parent 70aba71 commit c83e581

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,12 @@ needs to pass a lot of eyes and requires non-zero or even substantial time
4141
effort to review. There is a huge lack of active reviewers on the project, so
4242
patches often sit for a long time.
4343
-->
44+
45+
<!--
46+
Links for Windows and macOS build artifacts. Replace <PR> with the assigned pull request number.
47+
48+
[![Windows](https://img.shields.io/badge/OS-Windows-green)](https://api.cirrus-ci.com/v1/artifact/github/bitcoin-core/gui-qml/win64/insecure_win_gui.zip?branch=pull/<PR>)
49+
[![Intel macOS](https://img.shields.io/badge/OS-Intel%20macOS-green)](https://api.cirrus-ci.com/v1/artifact/github/bitcoin-core/gui-qml/macos/insecure_mac_gui.zip?branch=pull/<PR>)
50+
[![Apple Silicon macOS](https://img.shields.io/badge/OS-Apple%20Silicon%20macOS-green)](https://api.cirrus-ci.com/v1/artifact/github/bitcoin-core/gui-qml/macos_arm64/insecure_mac_arm64_gui.zip?branch=pull/<PR>)
51+
[![ARM64 Android](https://img.shields.io/badge/OS-Android-green)](https://api.cirrus-ci.com/v1/artifact/github/bitcoin-core/gui-qml/android/insecure_android_apk.zip?branch=pull/<PR>)
52+
-->

src/qml/README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@
44

55
This directory contains the source code for an experimental Bitcoin Core graphical user interface (GUI) built using the [Qt Quick](https://doc.qt.io/qt-5/qtquick-index.html) framework.
66

7+
Insecure CI artifacts are available for local testing of the master branch, avoiding the need to build:
8+
- for Windows: [`insecure_win_gui.zip`](https://api.cirrus-ci.com/v1/artifact/github/bitcoin-core/gui-qml/win64/insecure_win_gui.zip)
9+
- for Intel macOS: [`insecure_mac_gui.zip`](https://api.cirrus-ci.com/v1/artifact/github/bitcoin-core/gui-qml/macos/insecure_mac_gui.zip)
10+
- for Apple Silicon macOS: [`insecure_mac_arm64_gui.zip`](https://api.cirrus-ci.com/v1/artifact/github/bitcoin-core/gui-qml/macos_arm64/insecure_mac_arm64_gui.zip)
11+
- for ARM64 Android: [`insecure_android_apk.zip`](https://api.cirrus-ci.com/v1/artifact/github/bitcoin-core/gui-qml/android/insecure_android_apk.zip)
12+
13+
Note: For Apple Silicon macOS machines, the binary must be signed before it can
14+
be ran. To apply a signature, run the following on the unzipped CI artifact:
15+
16+
```
17+
codesign -s - ./Downloads/insecure_mac_arm64_gui
18+
```
19+
720
## Goals and Limitations
821

922
The current Bitcoin Core GUI has gathered enough technical debt and hacked on features; it is time to begin anew.

0 commit comments

Comments
 (0)