changed default namespace to CRoaring #45
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
name: Build after push to master | |
on: | |
push: | |
branches: [master] | |
jobs: | |
build-linux-x64: | |
runs-on: ubuntu-latest | |
env: | |
VCPKG_DISABLE_METRICS: 1 | |
VCPKG_INSTALLED_DIR: ${{ github.workspace }}/vcpkg_installed | |
steps: | |
- uses: actions/checkout@v4 | |
- name: vcpkg x64-linux | |
uses: lukka/run-vcpkg@v11 | |
env: | |
VCPKG_DEFAULT_TRIPLET: x64-linux-dynamic | |
with: | |
doNotCache: false | |
runVcpkgInstall: true | |
- name: copy lib | |
run: mkdir -p libs/x64-linux/ && cp vcpkg_installed/x64-linux-dynamic/lib/libroaring.so libs/x64-linux/ | |
- name: Upload lib to artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: libs-linux-x64 | |
path: | | |
libs/**/*.so | |
build-dotnet: | |
runs-on: ubuntu-latest | |
needs: [build-linux-x64] | |
env: | |
DOTNET_CLI_TELEMETRY_OPTOUT: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download libs atrifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: libs-linux-x64 | |
path: libs | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --no-restore --configuration Release /p:TreatWarningsAsErrors=true | |
- name: Test .NET 8 | |
run: dotnet test --no-build --configuration Release /p:CollectCoverage=true /p:CoverletOutputFormat=opencover | |
- name: Test .NET 6 | |
run: dotnet test --configuration Release /p:TestTargetFramework=net6.0 | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- uses: geekyeggo/delete-artifact@v5 | |
with: | |
name: libs-* | |