The Tester one
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Sebastian Ranoszek 2025-04-04 17:53:04 +02:00
parent ef3c8ff87c
commit 1714a761e4

View file

@ -5,7 +5,33 @@ steps:
- apk add --no-cache g++ libc-dev
- mkdir -p build
- echo "Building project..."
- g++ -static -o build/main main.cpp
- g++ -O2 -static -o build/main main.cpp
- chmod +x build/main
- name: Check Static
image: alpine
commands:
- apk add --no-cache file
- file build/main
- ldd build/main || echo "Static binary - no dynamic dependencies"
depends_on:
- Build
- name: Test-Debian
image: debian:bullseye
commands:
- apt-get update && apt-get install -y ca-certificates
- ./build/main
depends_on:
- Build
- name: Test-Arch
image: archlinux:latest
commands:
- pacman -Sy --noconfirm
- ./build/main
depends_on:
- Build
- name: discord notification
image: appleboy/drone-discord
@ -20,15 +46,18 @@ steps:
{{/success}}
depends_on:
- Build
- Test-Arch
- Test-Debian
- name: Find-Build
- name: Confirm-Build
image: alpine
commands:
- ls -al build
- echo "Build is mint!"
depends_on:
- Build
when:
event: tag
- Test-Arch
- Test-Debian
- name: Release
image: plugins/gitea-release
@ -40,6 +69,6 @@ steps:
repo_name: MarioDB
files: build/main
depends_on:
- Find-Build
- Confirm-Build
when:
event: tag