mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-01-27 18:18:41 +00:00
This patch recreates the resource presets with a non-burstable memory allocation (request==limit) and without CPU limits. With the new presets the difference between the larger presets became meaningless, so their values were adjusted. Signed-off-by: Timofei Larkin <lllamnyp@gmail.com>
25 lines
771 B
YAML
25 lines
771 B
YAML
repos:
|
|
- repo: local
|
|
hooks:
|
|
- id: gen-versions-map
|
|
name: Generate versions map and check for changes
|
|
entry: sh -c 'make -C packages/apps check-version-map && make -C packages/extra check-version-map'
|
|
language: system
|
|
types: [file]
|
|
pass_filenames: false
|
|
description: Run the script and fail if it generates changes
|
|
- id: run-make-generate
|
|
name: Run 'make generate' in all app directories
|
|
entry: |
|
|
/bin/bash -c '
|
|
for dir in ./packages/apps/*/; do
|
|
if [ -d "$dir" ]; then
|
|
echo "Running make generate in $dir"
|
|
(cd "$dir" && make generate)
|
|
fi
|
|
done
|
|
git diff --color=always | cat
|
|
'
|
|
language: script
|
|
files: ^.*$
|