WIP
This commit is contained in:
parent
6f43db433d
commit
877c39b5bc
2 changed files with 33 additions and 2 deletions
|
@ -12,7 +12,9 @@ steps:
|
||||||
password:
|
password:
|
||||||
from_secret: gitea_token
|
from_secret: gitea_token
|
||||||
repo: git.verdigado.com/${CI_REPO,,}
|
repo: git.verdigado.com/${CI_REPO,,}
|
||||||
tag: 'latest'
|
tags:
|
||||||
|
- 'latest'
|
||||||
|
- ${CI_COMMIT_SHA}
|
||||||
|
|
||||||
build-branch:
|
build-branch:
|
||||||
when:
|
when:
|
||||||
|
@ -28,4 +30,6 @@ steps:
|
||||||
password:
|
password:
|
||||||
from_secret: gitea_token
|
from_secret: gitea_token
|
||||||
repo: git.verdigado.com/${CI_REPO,,}
|
repo: git.verdigado.com/${CI_REPO,,}
|
||||||
tag: ${CI_COMMIT_BRANCH}
|
tags:
|
||||||
|
- ${CI_COMMIT_BRANCH}
|
||||||
|
- ${CI_COMMIT_SHA}
|
27
.woodpecker/.test.yaml
Normal file
27
.woodpecker/.test.yaml
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
skip_clone: true
|
||||||
|
variables:
|
||||||
|
- &image 'git.verdigado.com/verdigado-images/container-pre-commit:46a6ee43f9f32994d4697b589afa5b8fa75950aa'
|
||||||
|
|
||||||
|
steps:
|
||||||
|
salt clone:
|
||||||
|
image: woodpeckerci/plugin-git
|
||||||
|
settings:
|
||||||
|
remote: https://git.verdigado.com/verdigado-Privileged/Salt.git
|
||||||
|
path: salt
|
||||||
|
sha: ''
|
||||||
|
ref: refs/heads/master
|
||||||
|
branch: master
|
||||||
|
|
||||||
|
salt pre-commit:
|
||||||
|
image: *image
|
||||||
|
environment:
|
||||||
|
- SKIP=no-commit-to-branch # Ignore "don't commit to protected branch" check
|
||||||
|
commands:
|
||||||
|
- cd salt
|
||||||
|
- pre-commit run --all-files
|
||||||
|
|
||||||
|
when:
|
||||||
|
- event: push
|
||||||
|
|
||||||
|
depends_on:
|
||||||
|
- build
|
Loading…
Reference in a new issue