You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- # This workflow will build a .NET project
- # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
-
- name: build_and_test
-
- on:
- push:
- branches: [ "master" ]
- pull_request:
- branches: [ "master" ]
-
- jobs:
- build-and-test-on-windows:
-
- runs-on: windows-latest
-
- steps:
- - uses: actions/checkout@v3
- - name: Setup .NET 6
- uses: actions/setup-dotnet@v3
- with:
- dotnet-version: 6.0.x
- - name: Restore dependencies
- run: dotnet restore
- - name: Build CPU version
- run: dotnet build --no-restore
- # - name: Test CPU version
- # run: dotnet test --no-build --verbosity normal
- - name: uninstall redist cpu for unit tests
- run: dotnet remove Tensorflow.UnitTest.RedistHolder package SciSharp.TensorFlow.Redist
- - name: install redist gpu for unit tests
- run: dotnet add Tensorflow.UnitTest.RedistHolder package SciSharp.TensorFlow.Redist-Windows-GPU
- - name: Restore dependencies
- run: dotnet restore
- - name: Build GPU version
- run: dotnet build --no-restore
- # - name: Test GPU version
- # run: dotnet test --no-build --verbosity normal
-
- build-and-test-on-linux:
-
- runs-on: ubuntu-latest
-
- steps:
- - uses: actions/checkout@v3
- - name: Setup .NET
- uses: actions/setup-dotnet@v3
- with:
- dotnet-version: 6.0.x
- - name: Restore dependencies
- run: dotnet restore
- - name: Build CPU version
- run: dotnet build --no-restore
- # - name: Test CPU version
- # run: dotnet test --no-build --verbosity normal
- - name: uninstall redist cpu for unit tests
- run: dotnet remove Tensorflow.UnitTest.RedistHolder package SciSharp.TensorFlow.Redist
- - name: install redist gpu for unit tests
- run: dotnet add Tensorflow.UnitTest.RedistHolder package SciSharp.TensorFlow.Redist-Linux-GPU
- - name: Restore dependencies
- run: dotnet restore
- - name: Build GPU version
- run: dotnet build --no-restore
- # - name: Test GPU version
- # run: dotnet test --no-build --verbosity normal
|