This commit is contained in:
parent
e6c7f176a9
commit
efd17988af
@ -1,98 +1,97 @@
|
|||||||
local PipelineLinting = {
|
local PipelineLinting = {
|
||||||
kind: "pipeline",
|
kind: 'pipeline',
|
||||||
name: "linting",
|
name: 'linting',
|
||||||
platform: {
|
platform: {
|
||||||
os: "linux",
|
os: 'linux',
|
||||||
arch: "amd64",
|
arch: 'amd64',
|
||||||
},
|
},
|
||||||
steps: [
|
steps: [
|
||||||
{
|
{
|
||||||
name: "ansible-later",
|
name: 'ansible-later',
|
||||||
image: "xoxys/ansible-later:latest",
|
image: 'xoxys/ansible-later:latest',
|
||||||
commands: [
|
commands: [
|
||||||
"ansible-later",
|
'ansible-later',
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
trigger: {
|
trigger: {
|
||||||
ref: ["refs/heads/master", "refs/tags/**", "refs/pull/**"],
|
ref: ['refs/heads/master', 'refs/tags/**', 'refs/pull/**'],
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
local PipelineDocumentation = {
|
local PipelineDocumentation = {
|
||||||
kind: "pipeline",
|
kind: 'pipeline',
|
||||||
name: "documentation",
|
name: 'documentation',
|
||||||
platform: {
|
platform: {
|
||||||
os: "linux",
|
os: 'linux',
|
||||||
arch: "amd64",
|
arch: 'amd64',
|
||||||
},
|
},
|
||||||
steps: [
|
steps: [
|
||||||
{
|
{
|
||||||
name: "ansible-doctor",
|
name: 'ansible-doctor',
|
||||||
image: "xoxys/ansible-doctor:latest",
|
image: 'xoxys/ansible-doctor:latest',
|
||||||
environment: {
|
environment: {
|
||||||
ANSIBLE_DOCTOR_LOG_LEVEL: "INFO",
|
ANSIBLE_DOCTOR_LOG_LEVEL: 'INFO',
|
||||||
ANSIBLE_DOCTOR_FORCE_OVERWRITE: true,
|
ANSIBLE_DOCTOR_FORCE_OVERWRITE: true,
|
||||||
ANSIBLE_DOCTOR_EXCLUDE_FILES: "molecule/",
|
ANSIBLE_DOCTOR_EXCLUDE_FILES: 'molecule/',
|
||||||
ANSIBLE_DOCTOR_CUSTOM_HEADER: "HEADER.md",
|
ANSIBLE_DOCTOR_CUSTOM_HEADER: 'HEADER.md',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "push-to-repo",
|
name: 'push-to-repo',
|
||||||
image: "plugins/git-action:latest",
|
image: 'plugins/git-action:latest',
|
||||||
settings: {
|
settings: {
|
||||||
actions: ["commit", "push"],
|
actions: ['commit', 'push'],
|
||||||
author_email: "shipper@rknet.org",
|
author_email: 'shipper@rknet.org',
|
||||||
author_name: "DroneShipper",
|
author_name: 'DroneShipper',
|
||||||
branch: "master",
|
branch: 'master',
|
||||||
message: "[SKIP CI] update readme",
|
message: '[SKIP CI] update readme',
|
||||||
remote: "https://gitea.rknet.org/ansible/xoxys.network",
|
netrc_machine: 'gitea.rknet.org',
|
||||||
netrc_machine: "gitea.rknet.org",
|
netrc_username: { from_secret: 'gitea_username' },
|
||||||
netrc_username: {"from_secret": "gitea_username"},
|
netrc_password: { from_secret: 'gitea_token' },
|
||||||
netrc_password: {"from_secret": "gitea_token"},
|
|
||||||
},
|
},
|
||||||
when: {
|
when: {
|
||||||
ref: ["refs/heads/master"],
|
ref: ['refs/heads/master'],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
depends_on: [
|
depends_on: [
|
||||||
"linting",
|
'linting',
|
||||||
],
|
],
|
||||||
trigger: {
|
trigger: {
|
||||||
ref: ["refs/heads/master", "refs/tags/**", "refs/pull/**"],
|
ref: ['refs/heads/master', 'refs/tags/**', 'refs/pull/**'],
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
local PipelineNotification = {
|
local PipelineNotification = {
|
||||||
kind: "pipeline",
|
kind: 'pipeline',
|
||||||
name: "notification",
|
name: 'notification',
|
||||||
platform: {
|
platform: {
|
||||||
os: "linux",
|
os: 'linux',
|
||||||
arch: "amd64",
|
arch: 'amd64',
|
||||||
},
|
},
|
||||||
clone: {
|
clone: {
|
||||||
disable: true,
|
disable: true,
|
||||||
},
|
},
|
||||||
steps: [
|
steps: [
|
||||||
{
|
{
|
||||||
name: "matrix",
|
name: 'matrix',
|
||||||
image: "plugins/matrix",
|
image: 'plugins/matrix',
|
||||||
settings: {
|
settings: {
|
||||||
homeserver: { "from_secret": "matrix_homeserver" },
|
homeserver: { from_secret: 'matrix_homeserver' },
|
||||||
roomid: { "from_secret": "matrix_roomid" },
|
roomid: { from_secret: 'matrix_roomid' },
|
||||||
template: "Status: **{{ build.status }}**<br/> Build: [{{ repo.Owner }}/{{ repo.Name }}]({{ build.link }}) ({{ build.branch }}) by {{ build.author }}<br/> Message: {{ build.message }}",
|
template: 'Status: **{{ build.status }}**<br/> Build: [{{ repo.Owner }}/{{ repo.Name }}]({{ build.link }}) ({{ build.branch }}) by {{ build.author }}<br/> Message: {{ build.message }}',
|
||||||
username: { "from_secret": "matrix_username" },
|
username: { from_secret: 'matrix_username' },
|
||||||
password: { "from_secret": "matrix_password" },
|
password: { from_secret: 'matrix_password' },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
depends_on: [
|
depends_on: [
|
||||||
"documentation",
|
'documentation',
|
||||||
],
|
],
|
||||||
trigger: {
|
trigger: {
|
||||||
status: [ "success", "failure" ],
|
status: ['success', 'failure'],
|
||||||
ref: ["refs/heads/master", "refs/tags/**"],
|
ref: ['refs/heads/master', 'refs/tags/**'],
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -50,7 +50,6 @@ steps:
|
|||||||
from_secret: gitea_token
|
from_secret: gitea_token
|
||||||
netrc_username:
|
netrc_username:
|
||||||
from_secret: gitea_username
|
from_secret: gitea_username
|
||||||
remote: https://gitea.rknet.org/ansible/xoxys.network
|
|
||||||
when:
|
when:
|
||||||
ref:
|
ref:
|
||||||
- refs/heads/master
|
- refs/heads/master
|
||||||
@ -102,6 +101,6 @@ depends_on:
|
|||||||
|
|
||||||
---
|
---
|
||||||
kind: signature
|
kind: signature
|
||||||
hmac: 72d3c10da1efd8631afbee4d89c895232bbbb5c5eb1cc56126d9ee326dcceb69
|
hmac: 75f127c2018d80a9735bd90cdbf1c868498d5f418e3c9154557cd6f6ecdfd732
|
||||||
|
|
||||||
...
|
...
|
||||||
|
Loading…
Reference in New Issue
Block a user