We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f64f433 commit 2be0fe1Copy full SHA for 2be0fe1
azure-pipelines.yml
@@ -57,7 +57,10 @@ jobs:
57
# the generated libTorchSharp.so (and partly determines which Linux systems that binary will
58
# be usable on), then installs clang-7.0 (LibTorch likes this for building C++ 14), then installs .NET 6.0
59
prepScript: ${{ variables.LinuxPrepScript }}
60
- buildScript: dotnet build /p:SkipCuda=true -c
+ buildScript: |
61
+ eval "$(~/miniconda3/bin/conda shell.bash hook)"
62
+ source activate base
63
+ dotnet build /p:SkipCuda=true -c
64
testScript: dotnet test /p:SkipCuda=true --blame test/TorchSharpTest/TorchSharpTest.csproj -c
65
pool:
66
vmImage: 'ubuntu-latest'
0 commit comments