diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-10-29 18:57:05 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-10-29 18:57:05 +0700 |
commit | 7c718c3952a341cac0f38e18ddb3e4f82cc9f8b8 (patch) | |
tree | 871ef215c63025dfea08a4cdd99120ad8a07fa45 /.gitlab-ci.yml | |
parent | Use correct OID (diff) | |
download | BouncyCastle.NET-ed25519-7c718c3952a341cac0f38e18ddb3e4f82cc9f8b8.tar.xz |
Release preparations
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7506e65b6..f20669e90 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,12 +7,17 @@ net462-job: # This job runs in the test stage. script: - "dotnet test --framework net462 -v:normal -l \"console;verbosity=detailed\" crypto\\test\\BouncyCastle.Crypto.Tests.csproj" +net472-job: + stage: test + script: + - "dotnet test --framework net462 -v:normal -l \"console;verbosity=detailed\" crypto\\test\\BouncyCastle.Crypto.Tests.csproj" + net60-job: stage: test script: - "dotnet test --framework net6.0 -v:normal -l \"console;verbosity=detailed\" crypto\\test\\BouncyCastle.Crypto.Tests.csproj" -netcoreapp21-job: +netcoreapp31-job: stage: test script: - - "dotnet test --framework netcoreapp2.1 -v:normal -l \"console;verbosity=detailed\" crypto\\test\\BouncyCastle.Crypto.Tests.csproj" + - "dotnet test --framework netcoreapp3.1 -v:normal -l \"console;verbosity=detailed\" crypto\\test\\BouncyCastle.Crypto.Tests.csproj" |