summary refs log tree commit diff
diff options
context:
space:
mode:
authorMegan <megan.woods@keyfactor.com>2024-05-29 01:56:30 +0000
committerMegan <megan.woods@keyfactor.com>2024-05-29 01:56:30 +0000
commita941e23026431c48b342a64a81cd70c9bc05a98b (patch)
tree290955e88c9a89b438ff1ad3f58af2c1365e99e8
parentMerge branch 'release/v2.4' (diff)
downloadBouncyCastle.NET-ed25519-a941e23026431c48b342a64a81cd70c9bc05a98b.tar.xz
Update .gitlab-ci.yml file
-rw-r--r--.gitlab-ci.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 05eebfb3c..9c6ca4893 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,22 +1,32 @@
 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"