-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit a7165fd
Showing
4 changed files
with
87 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.idea* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
The Open BSV license. | ||
|
||
Copyright © 2022 Bitcoin Association | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the “Software”), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
1. The above copyright notice and this permission notice shall be included | ||
in all copies or substantial portions of the Software. | ||
2. The Software, and any software that is derived from the Software or parts | ||
thereof, can only be used on the Bitcoin SV blockchains. The Bitcoin SV | ||
blockchains are defined, for purposes of this license, as the Bitcoin | ||
blockchain containing block height #556767 with the hash | ||
“000000000000000001d956714215d96ffc00e0afda4cd0a96c96f8d802b1662b” and | ||
the test blockchains that are supported by the unmodified Software. | ||
|
||
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
Electrumsv-mAPI | ||
================ | ||
|
||
Licence: The Open BSV License | ||
Maintainers: Roger Taylor, AustEcon | ||
Project Lead: Roger Taylor | ||
Homepage: https://electrumsv.io/ | ||
|
||
|
||
Overview | ||
======== | ||
|
||
This repo has a single purpose: To compile unofficial binaries of | ||
BitcoinSV's HeaderSV. Namely for usage in the | ||
[ElectrumSV SDK](https://pypi.org/project/electrumsv-sdk) which aims | ||
to provide a first-class RegTest developer experience for running a local | ||
(or cloud / pipelines-based) Bitcoin Node, HeaderSV instance as well as | ||
other relevant services that many bitcoin applications depend on. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
trigger: | ||
batch: true | ||
branches: | ||
include: | ||
- master | ||
- releases/* | ||
- features/* | ||
paths: | ||
exclude: [ 'README.md' ] | ||
|
||
jobs: | ||
- job: BuildWindows | ||
|
||
pool: | ||
vmImage: 'windows-latest' | ||
|
||
variables: | ||
BUILD_PATH: '$(Build.BinariesDirectory)' | ||
|
||
steps : | ||
- script: | | ||
set -e | ||
git clone --branch v1.1.0 --depth=1 https://github.com/bitcoin-sv/block-headers-client.git $(BUILD_PATH) | ||
displayName: 'clone' | ||
- task: JavaToolInstaller@0 | ||
inputs: | ||
versionSpec: '11' | ||
jdkArchitectureOption: 'x64' | ||
jdkSourceOption: 'PreInstalled' | ||
|
||
- script: | | ||
cd $(BUILD_PATH) | ||
.\gradlew.bat assemble | ||
displayName: 'assemble' | ||
- task: PublishBuildArtifacts@1 | ||
displayName: 'upload artifact' | ||
inputs: | ||
artifactName: 'WindowsHeaderSV' | ||
pathtoPublish: '$(BUILD_PATH)\build\distributions\headerSV-boot-1.0.2.zip' |