Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libmtime
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
icon-libraries
libmtime
Commits
a9a6ba05
Commit
a9a6ba05
authored
1 month ago
by
Sergey Kosukhin
Browse files
Options
Downloads
Patches
Plain Diff
ci: individual caches for pre-commit jobs
parent
1c6714d2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!81
CI: individual caches for pre-commit jobs
Pipeline
#97249
passed
1 month ago
Stage: test
Stage: deploy
Changes
1
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+11
-23
11 additions, 23 deletions
.gitlab-ci.yml
with
11 additions
and
23 deletions
.gitlab-ci.yml
+
11
−
23
View file @
a9a6ba05
...
...
@@ -19,7 +19,6 @@ workflow:
.colorized
:
variables
:
DEFAULT
:
'
\033[0m'
GREEN
:
'
\033[0;32m'
RED
:
'
\033[0;31m'
.ci_dir
:
...
...
@@ -27,48 +26,39 @@ workflow:
CI_GITIGNORE_DIR
:
${CI_PROJECT_DIR}/.ci_dir
.common_pre_commit
:
extends
:
-
.colorized
-
.ci_dir
extends
:
.ci_dir
variables
:
APK_CACHE_DIR
:
${CI_GITIGNORE_DIR}/apk-cache
PRE_COMMIT_HOME
:
${CI_GITIGNORE_DIR}/pre-commit
CACHE_POLICY
:
pull
before_script
:
-
mkdir -p "${APK_CACHE_DIR}"
-
apk --cache-dir "${APK_CACHE_DIR}" --update-cache add git pre-commit
-
|
# Clean up cache
case ${CACHE_POLICY} in
*push) (
set -o pipefail
apk --cache-dir "${APK_CACHE_DIR}" cache clean
python3 --version | diff - "${PRE_COMMIT_HOME}/python_version.txt" 2>/dev/null || {
rm -rf "${PRE_COMMIT_HOME}"
mkdir -p "${PRE_COMMIT_HOME}"
python3 --version > "${PRE_COMMIT_HOME}/python_version.txt"
}
) ;;
*) printf "${GREEN}Skipped due to policy.\n${DEFAULT}" ;;
esac
(
set -o pipefail
apk --cache-dir "${APK_CACHE_DIR}" cache clean
python3 --version | diff - "${PRE_COMMIT_HOME}/python_version.txt" 2>/dev/null || {
rm -rf "${PRE_COMMIT_HOME}"
mkdir -p "${PRE_COMMIT_HOME}"
python3 --version > "${PRE_COMMIT_HOME}/python_version.txt"
}
)
tags
:
-
alpine
cache
:
-
key
:
apk-pre-commit
paths
:
-
${APK_CACHE_DIR}
policy
:
${CACHE_POLICY}
-
key
:
prefix
:
${CI_JOB_NAME_SLUG}
files
:
-
.pre-commit-config.yaml
paths
:
-
${PRE_COMMIT_HOME}
policy
:
${CACHE_POLICY}
Check licenses
:
extends
:
.common_pre_commit
variables
:
CACHE_POLICY
:
pull
script
:
-
pre-commit run --color=always --hook-stage manual reuse
rules
:
...
...
@@ -79,8 +69,6 @@ Check licenses:
Check style
:
extends
:
.common_pre_commit
variables
:
CACHE_POLICY
:
pull-push
script
:
-
pre-commit run --show-diff-on-failure --color=always --all-files
rules
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment