WIP
This commit is contained in:
parent
6f43db433d
commit
49d682d72c
2 changed files with 26 additions and 2 deletions
|
@ -12,7 +12,9 @@ steps:
|
|||
password:
|
||||
from_secret: gitea_token
|
||||
repo: git.verdigado.com/${CI_REPO,,}
|
||||
tag: 'latest'
|
||||
tags:
|
||||
- 'latest'
|
||||
- ${CI_COMMIT_SHA}
|
||||
|
||||
build-branch:
|
||||
when:
|
||||
|
@ -28,4 +30,6 @@ steps:
|
|||
password:
|
||||
from_secret: gitea_token
|
||||
repo: git.verdigado.com/${CI_REPO,,}
|
||||
tag: ${CI_COMMIT_BRANCH}
|
||||
tags:
|
||||
- ${CI_COMMIT_BRANCH}
|
||||
- ${CI_COMMIT_SHA}
|
20
.woodpecker/.test.yaml
Normal file
20
.woodpecker/.test.yaml
Normal file
|
@ -0,0 +1,20 @@
|
|||
steps:
|
||||
test-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
|
||||
|
||||
test-salt-pre-commit:
|
||||
image: git.verdigado.com/verdigado-images/container-pre-commit:${CI_COMMIT_SHA}
|
||||
environment:
|
||||
- SKIP=no-commit-to-branch # Ignore "don't commit to protected branch" check
|
||||
commands:
|
||||
- cd salt
|
||||
- pre-commit run --all-files
|
||||
|
||||
depends_on:
|
||||
- build
|
Loading…
Reference in a new issue