stages: # List of stages for jobs, and their order of execution - test setup: needs: [] script: - "testdata.bat" net461-job: # This job runs in the test stage. stage: test # It only starts when the job in the build stage completes successfully. needs: ["setup"] script: - "dotnet test --framework net461 -v:normal -l \"console;verbosity=detailed\" crypto\\test\\BouncyCastle.Crypto.Tests.csproj" net472-job: stage: test needs: ["setup"] script: - "dotnet test --framework net472 -v:normal -l \"console;verbosity=detailed\" crypto\\test\\BouncyCastle.Crypto.Tests.csproj" net60-job: stage: test needs: ["setup"] script: - "dotnet test --framework net6.0 -v:normal -l \"console;verbosity=detailed\" crypto\\test\\BouncyCastle.Crypto.Tests.csproj" netcoreapp31-job: stage: test needs: ["setup"] script: - "dotnet test --framework netcoreapp3.1 -v:normal -l \"console;verbosity=detailed\" crypto\\test\\BouncyCastle.Crypto.Tests.csproj"