summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNora Widdecke <nora@sequoia-pgp.org>2022-08-03 11:57:48 +0200
committerNora Widdecke <nora@sequoia-pgp.org>2022-08-15 13:51:48 +0200
commit378fdc56a47b30b872c88341ff54efadb424b7d1 (patch)
tree2b3f858044cb77a15550c3d547897c687a1c536a
parentca7e16e8aad5c77445905c088cedf41c881552a8 (diff)
ci: Emit meta information for easier debugging.
-rw-r--r--.gitlab-ci.yml14
1 files changed, 12 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 77154b5e..41b009c3 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -303,7 +303,12 @@ windows-gnu-nettle:
# Forks of this project most likely use gitlab's shared windows runners, which
# do not use the docker executor, so disable the windows jobs for forks.
- $CI_PROJECT_NAMESPACE == "sequoia-pgp"
- before_script: [] # scriptlet doesn't work on Powershell
+ before_script:
+ # the default before_scipt scriptlet doesn't work on Powershell
+ - rustc --version --verbose
+ - cargo --version
+ - clang -v
+ - gpg --version
script:
- cargo test -p buffered-reader -p sequoia-openpgp
after_script: [] # scriptlet doesn't work on Powershell
@@ -327,7 +332,12 @@ windows-gnu-cng:
# Forks of this project most likely use gitlab's shared windows runners, which
# do not use the docker executor, so disable the windows jobs for forks.
- $CI_PROJECT_NAMESPACE == "sequoia-pgp"
- before_script: [] # scriptlet doesn't work on Powershell
+ before_script:
+ # the default before_scipt scriptlet doesn't work on Powershell
+ - rustc --version --verbose
+ - cargo --version
+ - clang -v
+ - gpg --version
script:
# https://github.com/rust-lang/cargo/issues/5015
- cargo test --manifest-path openpgp/Cargo.toml --no-default-features --features crypto-cng,compression