Skip to content

Commit

Permalink
Merge branch 'more-bindings'
Browse files Browse the repository at this point in the history
RCasatta committed Nov 25, 2024
2 parents 136b9d9 + ed6fde4 commit 7f5755a
Showing 5 changed files with 221 additions and 1 deletion.
162 changes: 162 additions & 0 deletions .github/workflows/bindings.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,162 @@
on:
push:
branches:
- master
pull_request: {}

name: CI

jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04]
target: [aarch64-unknown-linux-gnu]
include:
- os: ubuntu-22.04
target: aarch64-unknown-linux-gnu
- os: ubuntu-22.04
target: x86_64-unknown-linux-gnu
- os: macos-14
target: aarch64-apple-darwin
- os: macos-14
target: x86_64-apple-darwin
- os: windows-2022
target: x86_64-pc-windows-msvc
- os: windows-2022
target: i686-pc-windows-msvc
runs-on: ${{ matrix.os }}
steps:
- name: Install gcc-aarch64-linux-gnu
if: matrix.target == 'aarch64-unknown-linux-gnu'
run: |
sudo apt-get update -y
sudo apt-get install -y gcc-aarch64-linux-gnu g++-aarch64-linux-gnu
echo "CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=/usr/bin/aarch64-linux-gnu-gcc" >> $GITHUB_ENV
- name: Checkout
uses: actions/checkout@v4
- run: rm rust-toolchain.toml # otherwise try to use version specified in it
- uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- uses: Swatinem/rust-cache@v2
- run: cargo build --release --target ${{ matrix.target }} -p lwk_bindings
- run: ls -l target/${{ matrix.target }}/release

- name: Archive release windows
uses: actions/upload-artifact@v4
with:
name: bindings-${{ matrix.target }}
path: target/${{ matrix.target }}/release/lwk.dll
if: matrix.os == 'windows-2022'

- name: Archive release linux
uses: actions/upload-artifact@v4
with:
name: bindings-${{ matrix.target }}
path: target/${{ matrix.target }}/release/liblwk.so
if: matrix.os == 'ubuntu-22.04'

- name: Archive release mac
uses: actions/upload-artifact@v4
with:
name: bindings-${{ matrix.target }}
path: |
target/${{ matrix.target }}/release/liblwk.dylib
target/${{ matrix.target }}/release/liblwk.a
if: matrix.os == 'macos-14'

build-language:
needs: build
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: bindings-x86_64-unknown-linux-gnu
path: target/
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: |
cargo install uniffi-bindgen-cs --git https://github.com/RCasatta/uniffi-bindgen-cs --rev be29aa170bf9c525edac812c9dd33b1aa801cf3d
uniffi-bindgen-cs --library target/liblwk.so --out-dir target
- run: ls -l target
- name: Archive csharp language interface
uses: actions/upload-artifact@v4
with:
name: bindings-interface-csharp
path: target/lwk.cs

build-nuget:
needs: build-language
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4

- uses: actions/download-artifact@v4
with:
name: bindings-interface-csharp
path: csharp

- uses: actions/download-artifact@v4
with:
name: bindings-aarch64-apple-darwin
path: csharp/runtimes/osx-arm64/native

- uses: actions/download-artifact@v4
with:
name: bindings-x86_64-apple-darwin
path: csharp/runtimes/osx-x64/native

- uses: actions/download-artifact@v4
with:
name: bindings-aarch64-unknown-linux-gnu
path: csharp/runtimes/linux-arm64/native

- uses: actions/download-artifact@v4
with:
name: bindings-x86_64-unknown-linux-gnu
path: csharp/runtimes/linux-x64/native

- uses: actions/download-artifact@v4
with:
name: bindings-x86_64-pc-windows-msvc
path: csharp/runtimes/win-x64/native

- uses: actions/download-artifact@v4
with:
name: bindings-i686-pc-windows-msvc
path: csharp/runtimes/win-x86/native

- run: cp lwk_bindings/csharp/* csharp

- run: ls -R csharp

- name: Archive the package
uses: actions/upload-artifact@v4
with:
name: LiquidWalletKitPackage
path: csharp/

- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.x'

- name: Build the project
working-directory: csharp
run: dotnet build LiquidWalletKit.csproj

- name: Create the package
working-directory: csharp
run: dotnet pack --configuration Release LiquidWalletKit.csproj

- name: Archive the package
uses: actions/upload-artifact@v4
with:
name: LiquidWalletKit.0.8.2.nupkg # TODO make version parametric
path: csharp/bin/Release/*.nupkg
23 changes: 23 additions & 0 deletions lwk_bindings/csharp/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
Except where noted in an individual source file, for sub-projects under the
subprojects/ directory, and noted below, this code is covered by the following
(BSD-MIT) license:

Copyright (c) Blockstream, Inc 2024

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:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the 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.
34 changes: 34 additions & 0 deletions lwk_bindings/csharp/LiquidWalletKit.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>LiquidWalletKit</PackageId>
<Version>0.8.2</Version>
<Company>Blockstream</Company>
<Description>C# Liquid Wallet Kit</Description>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<EnablePackageValidation>true</EnablePackageValidation>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageProjectUrl>https://github.com/blockstream/lwk</PackageProjectUrl>
<RepositoryUrl>https://github.com/blockstream/lwk</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>bitcoin liquid blockstream sdk non-custodial</PackageTags>
<Copyright>2024 Blockstream</Copyright>
</PropertyGroup>

<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\"/>
<None Include="LICENSE" Pack="true" PackagePath="\"/>
</ItemGroup>

<ItemGroup>
<Content Include="runtimes/osx-arm64/native/liblwk.dylib" Link="runtimes/osx-arm64/native/liblwk.dylib" Pack="true" PackagePath="runtimes/osx-arm64/native/liblwk.dylib" />
<Content Include="runtimes/osx-x64/native/liblwk.dylib" Link="runtimes/osx-x64/native/liblwk.dylib" Pack="true" PackagePath="runtimes/osx-x64/native/liblwk.dylib" />
<Content Include="runtimes/linux-arm64/native/liblwk.so" Link="runtimes/linux-arm64/native/liblwk.so" Pack="true" PackagePath="runtimes/linux-arm64/native/liblwk.so" />
<Content Include="runtimes/linux-x64/native/liblwk.so" Link="runtimes/linux-x64/native/liblwk.so" Pack="true" PackagePath="runtimes/linux-x64/native/liblwk.so" />
<Content Include="runtimes/win-x64/native/lwk.dll" Link="runtimes/win-x64/native/lwk.dll" Pack="true" PackagePath="runtimes/win-x64/native/lwk.dll" />
<Content Include="runtimes/win-x86/native/lwk.dll" Link="runtimes/win-x86/native/lwk.dll" Pack="true" PackagePath="runtimes/win-x86/native/lwk.dll" />
</ItemGroup>
</Project>
1 change: 1 addition & 0 deletions lwk_bindings/csharp/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# C# Liquid Wallet Kit
2 changes: 1 addition & 1 deletion lwk_bindings/uniffi.toml
Original file line number Diff line number Diff line change
@@ -5,4 +5,4 @@ package_name = "lwk"
cdylib_name = "lwk"

[bindings.swift]
module_name = "lwk"
module_name = "lwk"

0 comments on commit 7f5755a

Please sign in to comment.