add new pipeline for better building [CI SKIP]

This commit is contained in:
MrMeeb 2023-06-05 21:52:50 +00:00
parent 3c122e9f0b
commit 0b89350609

View File

@ -1,12 +1,11 @@
kind: pipeline kind: pipeline
type: docker type: docker
name: build-main-images name: build-release-images
trigger: trigger:
event: event:
exclude: exclude:
- pull_request - pull_request
ref: ref:
- refs/heads/main
- refs/tags/** - refs/tags/**
platform: platform:
@ -19,36 +18,16 @@ steps:
image: docker:git image: docker:git
commands: commands:
- git fetch --tags - git fetch --tags
when:
ref:
- refs/tags/**
depends_on: depends_on:
- clone - clone
# Set tags for main branch
- name: make-tags - name: make-tags
image: node
commands:
- echo -n "${DRONE_COMMIT_SHA:0:8}, latest" > .tags
when:
ref:
- refs/heads/main
depends_on:
- get-tags
- clone
- name: make-tags-release
image: node image: node
commands: commands:
- echo -n "${DRONE_TAG}, latest" > .tags - echo -n "${DRONE_TAG}, latest" > .tags
when:
ref:
- refs/tags/**
depends_on: depends_on:
- get-tags - get-tags
- clone
# Build containers from main branch
- name: build-gitea - name: build-gitea
image: thegeeklab/drone-docker-buildx image: thegeeklab/drone-docker-buildx
privileged: true privileged: true
@ -65,7 +44,6 @@ steps:
- linux/amd64 - linux/amd64
depends_on: depends_on:
- make-tags - make-tags
- make-tags-release
- name: build-github - name: build-github
image: thegeeklab/drone-docker-buildx image: thegeeklab/drone-docker-buildx
@ -83,7 +61,6 @@ steps:
- linux/amd64 - linux/amd64
depends_on: depends_on:
- make-tags - make-tags
- make-tags-release
- name: release-gitea - name: release-gitea
image: goreleaser/goreleaser image: goreleaser/goreleaser
@ -92,9 +69,6 @@ steps:
from_secret: gitea_token from_secret: gitea_token
commands: commands:
- goreleaser release -f .goreleaser-gitea.yaml - goreleaser release -f .goreleaser-gitea.yaml
when:
ref:
- refs/tags/**
depends_on: depends_on:
- build-gitea - build-gitea
@ -105,9 +79,6 @@ steps:
from_secret: github_token from_secret: github_token
commands: commands:
- goreleaser release -f .goreleaser-github.yaml - goreleaser release -f .goreleaser-github.yaml
when:
ref:
- refs/tags/**
depends_on: depends_on:
- build-github - build-github
@ -123,6 +94,78 @@ steps:
depends_on: depends_on:
- release-gitea - release-gitea
- release-github - release-github
---
kind: pipeline
type: docker
name: build-main-images
trigger:
event:
exclude:
- pull_request
ref:
- refs/heads/main
platform:
os: linux
arch: amd64
steps:
- name: make-tags
image: node
commands:
- echo -n "${DRONE_COMMIT_SHA:0:8}, latest" > .tags
when:
ref:
- refs/heads/main
depends_on:
- clone
- name: build-gitea
image: thegeeklab/drone-docker-buildx
privileged: true
settings:
provenance: false
registry: git.mrmeeb.stream
username:
from_secret: docker_username
password:
from_secret: docker_password
repo: git.mrmeeb.stream/mrmeeb/cronicle
platforms:
- linux/arm64
- linux/amd64
depends_on:
- make-tags
- name: build-github
image: thegeeklab/drone-docker-buildx
privileged: true
settings:
provenance: false
registry: ghcr.io
username:
from_secret: docker_username
password:
from_secret: github_token
repo: ghcr.io/mrmeeb/cronicle
platforms:
- linux/arm64
- linux/amd64
depends_on:
- make-tags
- name: notify
image: plugins/slack
when:
status:
- success
- failure
settings:
webhook:
from_secret: slack_webhook
depends_on:
- build-github - build-github
- build-gitea - build-gitea