diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-11-03 14:30:03 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-11-03 14:30:03 +0700 |
commit | 26e4f57a852f2345ed7c6697732706a2c33409b8 (patch) | |
tree | 130e04ebd92b459d52904c25ddc47ed98b34642b /.gitlab-ci.yml | |
parent | Authors/License cleanup (diff) | |
download | BouncyCastle.NET-ed25519-26e4f57a852f2345ed7c6697732706a2c33409b8.tar.xz |
net462 => net461
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f20669e90..05eebfb3c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,16 +1,15 @@ - stages: # List of stages for jobs, and their order of execution - test -net462-job: # This job runs in the test stage. +net461-job: # This job runs in the test stage. stage: test # It only starts when the job in the build stage completes successfully. script: - - "dotnet test --framework net462 -v:normal -l \"console;verbosity=detailed\" crypto\\test\\BouncyCastle.Crypto.Tests.csproj" + - "dotnet test --framework net461 -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" + - "dotnet test --framework net472 -v:normal -l \"console;verbosity=detailed\" crypto\\test\\BouncyCastle.Crypto.Tests.csproj" net60-job: stage: test |