This repository has been archived by the owner on Jul 5, 2024. It is now read-only.
Fix bug with update hooks #397
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 Squirrel | |
on: [ push, pull_request ] | |
jobs: | |
build-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/cache@v3 | |
with: | |
path: ~/.nuget/packages | |
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-nuget- | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Install .NET 6 | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 6.0.x | |
- name: Install .NET 8 | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 8.0.x | |
- name: Install Rust | |
run: rustup update stable | |
- name: Install cargo-llvm-cov | |
uses: taiki-e/install-action@cargo-llvm-cov | |
- name: Build Rust | |
working-directory: src/Rust | |
run: | | |
cargo build | |
cargo build --release | |
- name: Test Rust | |
working-directory: src/Rust | |
run: cargo llvm-cov --codecov --output-path ../../test/coverage.rust.json | |
- name: Build .NET | |
run: dotnet build -c Release | |
- name: Test .NET | |
run: dotnet test -c Release --no-build -l "console;verbosity=detailed" | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
with: | |
files: ./test/coverage.rust.json,./test/coverage.opencover.xml | |
fail_ci_if_error: true | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: packages | |
path: .\build\Release\*.nupkg | |
- name: Publish to GitHub Packages | |
shell: pwsh | |
run: dotnet nuget push .\build\Release\*.nupkg -k ${{ secrets.GITHUB_TOKEN }} -s https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json --skip-duplicate |