CI: Do not store .git directory in artifacts

Otherwise gitlab-runner prints a few warnings:

 > Uploading artifacts...
 > WARNING: Part of .git directory is on the list of files to archive
 > WARNING: This may introduce unexpected problems
This commit is contained in:
Luca Bacci 2025-07-01 17:24:03 +02:00
parent ce3a3e2d27
commit 30fdc7f338

View file

@ -155,6 +155,9 @@ fedora image:
when: "always"
paths:
- "*"
exclude:
- ".git*"
- ".git/**/*"
fedora build shared:
extends:
@ -397,6 +400,9 @@ vs2019 shared amd64:
artifacts:
paths:
- "*"
exclude:
- ".git*"
- ".git/**/*"
vs2019 static amd64:
extends: '.build windows'