Compare commits

...

2 Commits

Author SHA1 Message Date
Franky ba543f22ce Merge branch 'master' into 'master'
change zram-fraction on zram-generator.conf into a more realistic value

See merge request garuda-linux/themes-and-settings/settings/garuda-common-settings!8
2023-12-11 19:07:49 +00:00
BluishHumility 45fdc8db93 ci: fix pip refusing to install any package
Workaround in place as per https://gitlab.com/garuda-linux/themes-and-settings/settings/garuda-sway-settings/-/issues/2#note_1689180378
2023-12-11 14:04:19 -05:00
1 changed files with 6 additions and 2 deletions

View File

@ -9,7 +9,9 @@ check-commitizen:
GIT_STRATEGY: none
script:
- apk add --no-cache --upgrade py3-pip
- pip install -U commitizen
# Pass --break-system-packages since since this containers sole purpose is
# running 2 applications. If we get to advance this, implement a proper venv
- pip install --break-system-packages commitizen
- cz check --message "$CI_COMMIT_MESSAGE" >/tmp/cz_check || true # why does it return 1 if its actually 0?
- grep "successful" /tmp/cz_check # ugly hack to workaround the above issue
rules:
@ -24,7 +26,9 @@ tag-to-release:
GIT_STRATEGY: none
script:
- apk add --no-cache --upgrade git py3-pip
- pip install -U commitizen
# Pass --break-system-packages since since this containers sole purpose is
# running 2 applications. If we get to advance this, implement a proper venv
- pip install --break-system-packages -U commitizen
- git clone "$CI_PROJECT_URL.git"
- cd "$CI_PROJECT_NAME"
- CHANGELOG=$(cz changelog "$CI_COMMIT_TAG" --dry-run | sed /^Invalid/d)