diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-07-19 16:05:09 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-07-19 16:05:09 +0700 |
commit | 2c5b575c020517fc4dcf7c3f0e3ec939d392e416 (patch) | |
tree | d920026bd542761257ee002aaa03f605ae03b389 /.gitlab-ci.yml | |
parent | Add .gitlab-ci.yml to solution items (diff) | |
download | BouncyCastle.NET-ed25519-2c5b575c020517fc4dcf7c3f0e3ec939d392e416.tar.xz |
Run tests with netcoreapp2.1
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7b9f98412..7506e65b6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,7 +12,7 @@ net60-job: script: - "dotnet test --framework net6.0 -v:normal -l \"console;verbosity=detailed\" crypto\\test\\BouncyCastle.Crypto.Tests.csproj" -netcoreapp311-job: - stage: test # It only starts when the job in the build stage completes successfully. +netcoreapp21-job: + stage: test script: - - "dotnet test --framework netcoreapp3 -v:normal -l \"console;verbosity=detailed\" crypto\\test\\BouncyCastle.Crypto.Tests.csproj" + - "dotnet test --framework netcoreapp2.1 -v:normal -l \"console;verbosity=detailed\" crypto\\test\\BouncyCastle.Crypto.Tests.csproj" |