Skip to content
Commits on Source (5)
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
*.py[cod] *.py[cod]
.DS_Store .DS_Store
__pycache__/ __pycache__/
__pypackages__/
.vagrant/ .vagrant/
vendor/ vendor/
Thumbs.db Thumbs.db
...@@ -42,8 +43,17 @@ dist/ ...@@ -42,8 +43,17 @@ dist/
*.tar *.tar
*.rar *.rar
*.zip *.zip
*.xz
*.pid *.pid
*.lock *.lock
*.env *.env
.bundle/ .bundle/
!Pipfile.lock !Pipfile.lock
!pdm.lock
!Gemfile.lock
.terraform
.terraform.*
tfplan
*.tfstate*
*.venv
reports/
--- ---
include: include:
- project: shore/ci-templates - project: shore/ci-stuff
file: templates/pre-commit.yml file: templates/pre-commit.yml
variables: variables:
VERSION: 0.0.99.2 VERSION: 0.0.99.3
build: build:
stage: build stage: build
......
--- ---
repos: repos:
- repo: https://github.com/pre-commit/pre-commit-hooks.git - repo: https://github.com/pre-commit/pre-commit-hooks.git
rev: v3.4.0 rev: v4.0.1
hooks: hooks:
- id: check-added-large-files
- id: check-executables-have-shebangs
- id: check-merge-conflict - id: check-merge-conflict
- id: check-symlinks - id: check-yaml
- id: detect-private-key
- id: end-of-file-fixer
- id: trailing-whitespace - id: trailing-whitespace
exclude: \.diff$
- repo: https://github.com/Yelp/detect-secrets - repo: https://github.com/codespell-project/codespell.git
rev: v0.14.3 rev: v2.1.0
hooks: hooks:
- id: detect-secrets - id: codespell
- repo: https://github.com/adrienverge/yamllint - repo: https://github.com/Yelp/detect-secrets.git
rev: v1.25.0 rev: v1.1.0
hooks: hooks:
- id: yamllint - id: detect-secrets
- repo: https://github.com/amperser/proselint/ - repo: https://github.com/amperser/proselint.git
rev: 0.10.2 rev: 0.10.2
hooks: hooks:
- id: proselint - id: proselint
types: [plain-text] types: [plain-text]
exclude: LICENSE exclude: LICENSE
- repo: https://gitlab.com/devopshq/gitlab-ci-linter.git
rev: v1.0.2
hooks:
- id: gitlab-ci-linter
args:
- "--server"
- https://git.shore.co.il
- repo: https://git.shore.co.il/nimrod/yamltool.git
rev: v0.1.2
hooks:
- id: yamltool
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.26.3
hooks:
- id: yamllint
- repo: https://github.com/executablebooks/mdformat.git - repo: https://github.com/executablebooks/mdformat.git
rev: 0.5.3 rev: 0.7.10
hooks: hooks:
- id: mdformat - id: mdformat
# - repo: https://gitlab.freedesktop.org/nimrod/ci-templates.git
# rev: fd4100029a3d54e5184408313ca602f691f359b6
# hooks:
# - id: ci-fairy
# Toolbox build # Toolbx build
[![pipeline status](https://git.shore.co.il/shore/toolbox-build/badges/master/pipeline.svg)](https://git.shore.co.il/shore/toolbox-build/-/commits/master) [![pipeline status](https://git.shore.co.il/shore/toolbox-build/badges/master/pipeline.svg)](https://git.shore.co.il/shore/toolbox-build/-/commits/master)
Build [toolbox](https://github.com/containers/toolbox/). Build [toolbx](https://containertoolbx.org/).
Until there's Debian packaging for it, Until there's Debian packaging for it,
[build it myself](https://git.shore.co.il/shore/toolbox-build/-/jobs/artifacts/master/raw/toolbox/builddir/src/toolbox?job=build). [build it myself](https://git.shore.co.il/shore/toolbox-build/-/jobs/artifacts/master/raw/toolbox/builddir/src/toolbox?job=build).
......