All checks were successful
continuous-integration/drone/push Build is passing
Formatting was off for the message posted to Discord, it also triggered at the start of the pipeline. - Fixed formatting with an attempt to use newlines. - Added a depends_on `compile`.
79 lines
2.4 KiB
YAML
79 lines
2.4 KiB
YAML
kind: pipeline
|
|
type: docker
|
|
name: build
|
|
|
|
steps:
|
|
- name: build-image
|
|
image: plugins/docker
|
|
settings:
|
|
repo: t3hn3rd/asuro-build
|
|
tags: latest
|
|
dockerfile: Dockerfile
|
|
registry: docker.io
|
|
username:
|
|
from_secret: docker_username
|
|
password:
|
|
from_secret: docker_password
|
|
|
|
- name: compile
|
|
image: t3hn3rd/asuro-build:latest
|
|
depends_on:
|
|
- build-image
|
|
commands:
|
|
- git fetch --tags
|
|
- find . -type f -print0 | xargs -0 dos2unix
|
|
- chmod +x /drone/src/*.sh
|
|
- /drone/src/compile.sh
|
|
|
|
- name: upload-iso-artifact
|
|
image: alpine/git
|
|
depends_on:
|
|
- compile
|
|
when:
|
|
branch:
|
|
- master
|
|
environment:
|
|
GITEA_TOKEN:
|
|
from_secret: gitea_token
|
|
commands:
|
|
- apk add --no-cache curl
|
|
- chmod +w Asuro.iso
|
|
- cp Asuro.iso "Asuro-$(git rev-parse --short HEAD).iso"
|
|
- echo "Uploading Asuro-$(git rev-parse --short HEAD).iso to Gitea Packages..."
|
|
- |
|
|
curl -X PUT "https://gitea.spexeah.com/api/packages/Spexeah/generic/asuro-iso/$(git rev-parse --short HEAD)/Asuro.iso" \
|
|
-H "Authorization: token $GITEA_TOKEN" --upload-file "Asuro-$(git rev-parse --short HEAD).iso"
|
|
- echo "Updating latest ISO reference..."
|
|
- |
|
|
curl -X DELETE https://gitea.spexeah.com/api/packages/Spexeah/generic/asuro-iso/latest/Asuro.iso \
|
|
-H "Authorization: token $GITEA_TOKEN" || echo "No previous latest version found."
|
|
- |
|
|
curl -X PUT https://gitea.spexeah.com/api/packages/Spexeah/generic/asuro-iso/latest/Asuro.iso \
|
|
-H "Authorization: token $GITEA_TOKEN" --upload-file "Asuro-$(git rev-parse --short HEAD).iso"
|
|
|
|
- name: msg status
|
|
image: appleboy/drone-discord
|
|
depends_on:
|
|
- compile
|
|
when:
|
|
status: [success, failure, changed]
|
|
settings:
|
|
webhook_id:
|
|
from_secret: discord_webhook_id
|
|
webhook_token:
|
|
from_secret: discord_webhook_secret
|
|
message: >
|
|
**Drone CI - Asuro Build**\n
|
|
{{#success build.status}}
|
|
✅ Build successful!\n
|
|
{{else}}
|
|
❌ Build failed!\n
|
|
{{/success}}
|
|
Repository: `{{repo.namespace}}/{{repo.name}}`\n
|
|
Branch: `{{commit.branch}}`\n
|
|
Commit: `{{commit.sha}} ({{commit.link}})`\n
|
|
Author: `{{commit.author}} <{{commit.email}}>`\n
|
|
Message:
|
|
```\n
|
|
{{commit.message}}\n
|
|
``` |