[net]build(gh): add client generator tests into CI #148
Workflow file for this run
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: '[net] CI' | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- '.github/workflows/net-ci.yml' | |
- 'net/**' | |
- 'Sales.Net.sln' | |
pull_request: | |
paths: | |
- '.github/workflows/net-ci.yml' | |
- 'net/**' | |
- 'Sales.Net.sln' | |
jobs: | |
build-test: | |
name: Build & Test | |
runs-on: ubuntu-latest | |
permissions: | |
packages: read | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Check Code | |
uses: actions/checkout@v4 | |
- name: Set Up .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Restore Solution | |
run: | | |
NUGET_SOURCE_URL="https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json" | |
dotnet nuget remove source ${{ github.repository_owner }}-github || true | |
dotnet nuget add source $NUGET_SOURCE_URL \ | |
--name ${{ github.repository_owner }}-github \ | |
--username "${{ github.workflow }}" \ | |
--password ${{ secrets.GITHUB_TOKEN }} \ | |
--store-password-in-clear-text | |
dotnet restore | |
- name: Build Solution | |
run: >- | |
dotnet build --no-restore --configuration Debug | |
- name: Test Solution | |
run: >- | |
dotnet test --no-build --configuration Debug | |
--logger "trx;LogFileName=TestResults.trx" | |
- name: Upload Test Results | |
if: ${{ success() || failure() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test-results | |
path: | | |
net/**/*.trx | |
!net/**/Sails.Tests.Shared/**/*.trx | |
build_win_x64: | |
name: Build Native Libraries for Win x64 | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Build & Test Client Generator | |
run: | | |
cargo test --locked --manifest-path net/rs/Cargo.toml --release | |
build_linux_x64: | |
name: Build Native Libraries for Linux x64 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Build & Test Client Generator | |
run: | | |
cargo test --locked --manifest-path net/rs/Cargo.toml --release | |
build_osx_x64: | |
name: Build Native Libraries for NacOS x64 | |
runs-on: macos-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Build & Test Client Generator | |
run: | | |
rustup target add x86_64-apple-darwin | |
cargo test --locked --manifest-path net/rs/Cargo.toml --release --target x86_64-apple-darwin | |
build_osx_arm64: | |
name: Build Native Libraries for MacOS ARM64 | |
runs-on: macos-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Build & Test Client Generator | |
run: | | |
rustup target add aarch64-apple-darwin | |
cargo test --locked --manifest-path net/rs/Cargo.toml --release --target aarch64-apple-darwin |