diff options
author | Helmut Grohne <helmut@subdivi.de> | 2023-01-11 19:29:46 +0100 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2023-01-11 21:23:55 +0100 |
commit | c751e229a1f8118787954d26bab4c300d114300e (patch) | |
tree | 6bff23af27bb52f8fbc2657cc2c07597bf1edf8d /.gitlab-ci.yml | |
parent | 0fb18186ca3ed2ac16efeb34ea3840e17aafaa3d (diff) | |
download | debvm-c751e229a1f8118787954d26bab4c300d114300e.tar.gz |
debvm-create: move functionality into support files
The benefit of this change is that we don't have to escape that much. As
a consequence, it becomes easier to put more code into the customization
hooks, which have access to installed package versions. Thus we can
reduce the use of DEBVER and thus improve working with snapshot.d.o.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d7f2aee..29e0783 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,14 +5,14 @@ shellcheck: - apt-get update - apt-get dist-upgrade --yes - apt-get --no-install-recommends --yes install shellcheck - - shellcheck -P tests bin/* tests/*.sh + - shellcheck -P tests bin/* share/*.sh tests/*.sh codespell: script: - apt-get update - apt-get dist-upgrade --yes - apt-get --no-install-recommends --yes install codespell - - codespell bin/* tests/*.sh + - codespell bin/* share/*.sh tests/*.sh release_test: parallel: |