Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
AustEcon committed Apr 19, 2022
0 parents commit a7165fd
Show file tree
Hide file tree
Showing 4 changed files with 87 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.idea*
27 changes: 27 additions & 0 deletions LICENCE
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.
18 changes: 18 additions & 0 deletions README.md
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.
41 changes: 41 additions & 0 deletions azure-pipelines.yaml
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'

0 comments on commit a7165fd

Please sign in to comment.