]> gitweb.fluxo.info Git - keyringer.git/commitdiff
Fix: CI: test: explanatory comments (#10)
authorSilvio Rhatto <rhatto@riseup.net>
Sat, 4 Jan 2025 20:28:30 +0000 (17:28 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Sat, 4 Jan 2025 20:28:30 +0000 (17:28 -0300)
.gitlab-ci.yml

index 2881afb5ca1e6c73cfef8dc6ff9c54fb333cc80f..f6df338f9da36a97da45c7bfe443c90e98839204 100644 (file)
@@ -67,7 +67,7 @@ test:
     - git checkout debian
     - gpg --import < debian/upstream/signing-key.asc
 
-    # Test in the develop branch
+    # Create a test keyring in the develop branch
     - git branch develop --track origin/develop || true
     - git checkout develop
     - mkdir -p ~/temp/tests
@@ -75,7 +75,12 @@ test:
     - git config --global user.email 'test@example.org'
     - KEYRINGER_NON_INTERACTIVE=1 ./keyringer test init ~/temp/tests/keyringer
     - gpg --with-colons --list-keys | grep uid | awk -F ':' '{ x = $10; gsub(/.*</, "", x); gsub(/>/, "", x); print x, $8; }' >> ~/temp/tests/keyringer/config/recipients/default
+
+    # Test the keyring in the develop branch
+    # This will also test the expiration of the upstream signing key
     - ./keyringer test check
+
+    # Tear down the keyring in the develop branch
     - ./keyringer test teardown -y
 
     # Test in the main branch