diff options
author | Megan <megan@cryptoworkshop.com> | 2022-07-15 10:15:05 +0000 |
---|---|---|
committer | Megan <megan@cryptoworkshop.com> | 2022-07-15 10:15:05 +0000 |
commit | 50e69863f01e36b5106e48250834d25f4046fbcb (patch) | |
tree | 40ed8a5e8e2b4a8c780f87a9a65bddefa844ef36 /.gitlab-ci.yml | |
parent | Update .gitlab-ci.yml file (diff) | |
download | BouncyCastle.NET-ed25519-50e69863f01e36b5106e48250834d25f4046fbcb.tar.xz |
Added specific platform targets
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 712ce0c42..7b9f98412 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,5 +5,14 @@ stages: # List of stages for jobs, and their order of execution net462-job: # This job runs in the test stage. stage: test # It only starts when the job in the build stage completes successfully. script: - - "dir " - "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" + +netcoreapp311-job: + stage: test # It only starts when the job in the build stage completes successfully. + script: + - "dotnet test --framework netcoreapp3 -v:normal -l \"console;verbosity=detailed\" crypto\\test\\BouncyCastle.Crypto.Tests.csproj" |