Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rid packages #2

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Setup .NET Core 8.x
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.x
Expand Down
42 changes: 29 additions & 13 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,22 @@ on:

jobs:
build_chdb:
name: Build chdb-${{ matrix.rid }}
name: Build chdb-${{ matrix.RID }}
runs-on: ${{ matrix.os }}
env:
RID: ${{ matrix.RID }}
strategy:
matrix:
include:
- os: ubuntu-latest
rid: linux-x64
RID: linux-x64
# github runner not available yet
# - os: ubuntu-latest
# RID: linux-arm64
- os: macos-latest
rid: osx-x64
RID: osx-x64
- os: macos-14
rid: osx-arm64
RID: osx-arm64

steps:
- name: 'Print manual run reason'
Expand All @@ -42,7 +47,7 @@ jobs:
- uses: actions/checkout@v4

- name: Setup .NET Core
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
Expand Down Expand Up @@ -72,17 +77,27 @@ jobs:
dotnet build --no-restore --configuration Release

- name: Test
run: dotnet test -c Release --no-build --logger trx --results-directory "TestResults-${{ matrix.rid }}"
run: dotnet test -c Release --no-build --logger trx --results-directory "TestResults-${{ matrix.RID }}"

- name: Pack chdb-${{ matrix.RID }}
run: |
cp libchdb.so src/chdb/libchdb.so
ls -lahS src/chdb/libchdb*
dotnet pack src/chdb/chdb.csproj -c Release --include-symbols
ls -lahS nupkg

- name: Publish chdb-${{ matrix.RID }} package to nuget.org
run: dotnet nuget push nupkg/chd-.*.nupkg --skip-duplicate --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_AUTH_TOKEN_CHDB }}

# - name: Upload dotnet test results
# uses: actions/upload-artifact@v4
# with:
# name: dotnet-results-${{ matrix.rid }}
# path: TestResults-${{ matrix.rid }}
# name: dotnet-results-${{ matrix.RID }}
# path: TestResults-${{ matrix.RID }}
# # Use always() to always run this step to publish test results when there are test failures
# if: ${{ always() }}

# - name: Pack chdb-${{ matrix.rid }}
# - name: Pack chdb-${{ matrix.RID }}
# run: |
# dotnet pack src/chdb/chdb.csproj -c Release
# ls -lahS nupkg
Expand All @@ -92,16 +107,16 @@ jobs:
# env:
# NUGET_AUTH_TOKEN: ${{ secrets.NUGET_AUTH_TOKEN_CHDB }}

# - name: Publish chdb-${{ matrix.rid }} package to GPR
# run: dotnet nuget push nupkg/chdb-${{ matrix.rid }}.*.nupkg --skip-duplicate --api-key ${{ secrets.PACKAGES_TOKEN }} --source https://nuget.pkg.github.com/chdb-io/index.json
# - name: Publish chdb-${{ matrix.RID }} package to GPR
# run: dotnet nuget push nupkg/chdb-${{ matrix.RID }}.*.nupkg --skip-duplicate --api-key ${{ secrets.PACKAGES_TOKEN }} --source https://nuget.pkg.github.com/chdb-io/index.json
# env:
# NUGET_AUTH_TOKEN: ${{ secrets.PACKAGES_TOKEN }}

# - name: Upload nupkg
# #run: ls -l nupkg/*.nupkg
# uses: actions/upload-artifact@v4
# with:
# name: dotnet-nupkg-${{ matrix.rid }}
# name: dotnet-nupkg-${{ matrix.RID }}
# path: nupkg

push_chdb:
Expand All @@ -126,7 +141,8 @@ jobs:
run: |
cp libchdb.so src/chdb/libchdb.so
ls -lahS src/chdb/libchdb*
dotnet pack src/chdb/chdb.csproj -c Release --include-symbols
dotnet nuget sources add -n chdb ./nupkg
dotnet pack src/chdb-meta/chdb-meta.csproj -c Release --include-symbols
ls -lahS nupkg

- name: Publish the package to nuget.org
Expand Down
16 changes: 1 addition & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,27 +11,13 @@ A .NET Core binding for [chdb](https://doc.chdb.io) library.

Running on platforms: linux, osx, windows, and architectures: x64, arm64.

>Note for windows users - there is no windows bild in sight, but you can still use it in WSL.

Currently the librairy is too large to be packed into a nuget package, so you need to install it manually. Use the [update_libchdb.sh](update_libchdb.sh) script to download the library for your platform and architecture.
>Note for windows users - there is no windows build in sight, but you can still use it in WSL.

```bash
# download the latest version of the library - it takes a version as an optional argument
./update_libchdb.sh
# install the package to your project
dotnet add package chdb
```

Also place the library in appropriate folder, and add following to your csproj file:

```xml
<ItemGroup>
<None Update="libchdb.so">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
```

Then you can use it in your code like this:

```csharp
Expand Down
3 changes: 2 additions & 1 deletion src/chdb-meta/chdb-meta.csproj
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<PackageId>chdb</PackageId>
<Title>chdb</Title>
<Description>chdb native bindings for dotnet core</Description>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="chdb-linux-x64" Version="$(Version)" Condition="$(IsLinuxX64) == true" />
<PackageReference Include="chdb-linux-arm64" Version="$(Version)" Condition="$(IsLinuxArm64) == true" />
<!-- <PackageReference Include="chdb-linux-arm64" Version="$(Version)" Condition="$(IsLinuxArm64) == true" /> -->
<PackageReference Include="chdb-osx-x64" Version="$(Version)" Condition="$(IsOsxX64) == true" />
<PackageReference Include="chdb-osx-arm64" Version="$(Version)" Condition="$(IsOsxArm64) == true" />
</ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/chdb/ChDb.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ internal static class NativeMethods
private const string __DllName = "libchdb.so";

[DllImport(__DllName, EntryPoint = "query_stable_v2", CallingConvention = CallingConvention.Cdecl, ExactSpelling = true)]
internal static extern IntPtr query_stable_v2(int argc, string[] argv);
internal static extern nint query_stable_v2(int argc, string[] argv);

[DllImport(__DllName, EntryPoint = "free_result_v2", CallingConvention = CallingConvention.Cdecl, ExactSpelling = true)]
internal static extern void free_result_v2(IntPtr result);
internal static extern void free_result_v2(nint result);
}

/// <summary>
Expand Down
5 changes: 3 additions & 2 deletions src/chdb/chdb.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,18 @@
<PropertyGroup>
<InternalsVisibleTo>tests</InternalsVisibleTo>
<TargetFramework>netstandard2.1</TargetFramework>
<RuntimeIdentifier>$(RID)</RuntimeIdentifier>
<!-- <PackageId Condition="$(IsLinuxX64) == true" >chdb-linux-x64</PackageId>
<PackageId Condition="$(IsLinuxArm64) == true" >chdb-linux-arm64</PackageId>
<PackageId Condition="$(IsOsxX64) == true" >chdb-osx-x64</PackageId>
<PackageId Condition="$(IsOsxArm64) == true" >chdb-osx-arm64</PackageId> -->
<PackageId>chdb</PackageId>
<PackageId>chdb-$(RID)</PackageId>
<Title>chdb</Title>
<Description>chdb native bindings for dotnet core</Description>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>

<ItemGroup>
<Content Include="libchdb.so" Pack="false" CopyToOutputDirectory="PreserveNewest" />
<Content Include="libchdb.so" Pack="true" PackagePath="runtimes/$(RID)/native/" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
</Project>
Loading