mirror of
https://github.com/thegeeklab/docker-tidy.git
synced 2024-11-25 05:30:39 +00:00
fetch git tags on each pipeline
This commit is contained in:
parent
979b4f17e5
commit
65e3d0f979
@ -29,7 +29,7 @@ local PipelineLint = {
|
|||||||
name: 'fetch',
|
name: 'fetch',
|
||||||
image: 'thegeeklab/alpine-tools',
|
image: 'thegeeklab/alpine-tools',
|
||||||
commands: [
|
commands: [
|
||||||
'git fetch --tags',
|
'git fetch -tq',
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -59,6 +59,13 @@ local PipelineTest = {
|
|||||||
arch: 'amd64',
|
arch: 'amd64',
|
||||||
},
|
},
|
||||||
steps: [
|
steps: [
|
||||||
|
{
|
||||||
|
name: 'fetch',
|
||||||
|
image: 'thegeeklab/alpine-tools',
|
||||||
|
commands: [
|
||||||
|
'git fetch -tq',
|
||||||
|
],
|
||||||
|
},
|
||||||
PythonVersion(pyversion='3.6'),
|
PythonVersion(pyversion='3.6'),
|
||||||
PythonVersion(pyversion='3.7'),
|
PythonVersion(pyversion='3.7'),
|
||||||
PythonVersion(pyversion='3.8'),
|
PythonVersion(pyversion='3.8'),
|
||||||
@ -103,7 +110,7 @@ local PipelineSecurity = {
|
|||||||
name: 'fetch',
|
name: 'fetch',
|
||||||
image: 'thegeeklab/alpine-tools',
|
image: 'thegeeklab/alpine-tools',
|
||||||
commands: [
|
commands: [
|
||||||
'git fetch --tags',
|
'git fetch -tq',
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -140,7 +147,7 @@ local PipelineBuildPackage = {
|
|||||||
name: 'fetch',
|
name: 'fetch',
|
||||||
image: 'thegeeklab/alpine-tools',
|
image: 'thegeeklab/alpine-tools',
|
||||||
commands: [
|
commands: [
|
||||||
'git fetch --tags',
|
'git fetch -tq',
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -209,7 +216,7 @@ local PipelineBuildContainer(arch='amd64') = {
|
|||||||
name: 'fetch',
|
name: 'fetch',
|
||||||
image: 'thegeeklab/alpine-tools',
|
image: 'thegeeklab/alpine-tools',
|
||||||
commands: [
|
commands: [
|
||||||
'git fetch --tags',
|
'git fetch -tq',
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -296,7 +303,7 @@ local PipelineDocs = {
|
|||||||
name: 'fetch',
|
name: 'fetch',
|
||||||
image: 'thegeeklab/alpine-tools',
|
image: 'thegeeklab/alpine-tools',
|
||||||
commands: [
|
commands: [
|
||||||
'git fetch --tags',
|
'git fetch -tq',
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -409,7 +416,7 @@ local PipelineNotifications = {
|
|||||||
name: 'fetch',
|
name: 'fetch',
|
||||||
image: 'thegeeklab/alpine-tools',
|
image: 'thegeeklab/alpine-tools',
|
||||||
commands: [
|
commands: [
|
||||||
'git fetch --tags',
|
'git fetch -tq',
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
23
.drone.yml
23
.drone.yml
@ -10,7 +10,7 @@ steps:
|
|||||||
- name: fetch
|
- name: fetch
|
||||||
image: thegeeklab/alpine-tools
|
image: thegeeklab/alpine-tools
|
||||||
commands:
|
commands:
|
||||||
- git fetch --tags
|
- git fetch -tq
|
||||||
|
|
||||||
- name: flake8
|
- name: flake8
|
||||||
image: python:3.9
|
image: python:3.9
|
||||||
@ -39,6 +39,11 @@ platform:
|
|||||||
arch: amd64
|
arch: amd64
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: fetch
|
||||||
|
image: thegeeklab/alpine-tools
|
||||||
|
commands:
|
||||||
|
- git fetch -tq
|
||||||
|
|
||||||
- name: python36-pytest
|
- name: python36-pytest
|
||||||
image: python:3.6
|
image: python:3.6
|
||||||
commands:
|
commands:
|
||||||
@ -130,7 +135,7 @@ steps:
|
|||||||
- name: fetch
|
- name: fetch
|
||||||
image: thegeeklab/alpine-tools
|
image: thegeeklab/alpine-tools
|
||||||
commands:
|
commands:
|
||||||
- git fetch --tags
|
- git fetch -tq
|
||||||
|
|
||||||
- name: bandit
|
- name: bandit
|
||||||
image: python:3.9
|
image: python:3.9
|
||||||
@ -165,7 +170,7 @@ steps:
|
|||||||
- name: fetch
|
- name: fetch
|
||||||
image: thegeeklab/alpine-tools
|
image: thegeeklab/alpine-tools
|
||||||
commands:
|
commands:
|
||||||
- git fetch --tags
|
- git fetch -tq
|
||||||
|
|
||||||
- name: build
|
- name: build
|
||||||
image: python:3.9
|
image: python:3.9
|
||||||
@ -231,7 +236,7 @@ steps:
|
|||||||
- name: fetch
|
- name: fetch
|
||||||
image: thegeeklab/alpine-tools
|
image: thegeeklab/alpine-tools
|
||||||
commands:
|
commands:
|
||||||
- git fetch --tags
|
- git fetch -tq
|
||||||
|
|
||||||
- name: build
|
- name: build
|
||||||
image: python:3.9
|
image: python:3.9
|
||||||
@ -322,7 +327,7 @@ steps:
|
|||||||
- name: fetch
|
- name: fetch
|
||||||
image: thegeeklab/alpine-tools
|
image: thegeeklab/alpine-tools
|
||||||
commands:
|
commands:
|
||||||
- git fetch --tags
|
- git fetch -tq
|
||||||
|
|
||||||
- name: build
|
- name: build
|
||||||
image: python:3.9
|
image: python:3.9
|
||||||
@ -413,7 +418,7 @@ steps:
|
|||||||
- name: fetch
|
- name: fetch
|
||||||
image: thegeeklab/alpine-tools
|
image: thegeeklab/alpine-tools
|
||||||
commands:
|
commands:
|
||||||
- git fetch --tags
|
- git fetch -tq
|
||||||
|
|
||||||
- name: build
|
- name: build
|
||||||
image: python:3.9
|
image: python:3.9
|
||||||
@ -507,7 +512,7 @@ steps:
|
|||||||
- name: fetch
|
- name: fetch
|
||||||
image: thegeeklab/alpine-tools
|
image: thegeeklab/alpine-tools
|
||||||
commands:
|
commands:
|
||||||
- git fetch --tags
|
- git fetch -tq
|
||||||
|
|
||||||
- name: assets
|
- name: assets
|
||||||
image: thegeeklab/alpine-tools
|
image: thegeeklab/alpine-tools
|
||||||
@ -604,7 +609,7 @@ steps:
|
|||||||
- name: fetch
|
- name: fetch
|
||||||
image: thegeeklab/alpine-tools
|
image: thegeeklab/alpine-tools
|
||||||
commands:
|
commands:
|
||||||
- git fetch --tags
|
- git fetch -tq
|
||||||
|
|
||||||
- name: manifest-dockerhub
|
- name: manifest-dockerhub
|
||||||
image: plugins/manifest
|
image: plugins/manifest
|
||||||
@ -692,6 +697,6 @@ depends_on:
|
|||||||
|
|
||||||
---
|
---
|
||||||
kind: signature
|
kind: signature
|
||||||
hmac: b6c89922bc97dcb1dbfbfd8b9e1b0dd0c84f07ef607dc2a5a694822f4cf198e4
|
hmac: c79a1e6c4b48d2989922a16cb430f9c31958011389b9b4842c98d319c9088ad0
|
||||||
|
|
||||||
...
|
...
|
||||||
|
Loading…
Reference in New Issue
Block a user