3 Commits

Author SHA1 Message Date
9b1728e205 Fix the token
Some checks failed
ci/woodpecker/tag/build Pipeline failed
Signed-off-by: Nikolai Rodionov <allanger@badhouseplants.net>
2025-07-05 10:00:58 +02:00
fcb61f7a94 Add a woodpecker build
Signed-off-by: Nikolai Rodionov <allanger@badhouseplants.net>
2025-07-05 09:56:36 +02:00
c4fc6ef30a Build with JUCE 7.0.2
Update build and changelog

Switch to docker runners

Fix the source path in build

Fix the release path in build

Use zipped artifacts

build: Install zip

build: Fix commands for the package step

build: Fix zip command

update a bit

Signed-off-by: Nikolai Rodionov <allanger@badhouseplants.net>
2025-07-05 09:43:52 +02:00
4 changed files with 38 additions and 24 deletions

View File

@ -1,20 +1,17 @@
---
kind: pipeline
type: docker
name: Release paulxstretch
trigger:
# Build a container image
when:
event:
- tag
steps:
- name: Build
image: ubuntu:22.04
build:
image: ubuntu:25.10
name: Build the plugin for linux
commands:
- apt-get update -y
- |
apt-get install -y \
build-essential libasound2 cmake \
build-essential libasound2t64 cmake \
fftw-dev pkg-config libx11-dev \
x11-xserver-utils libxrandr-dev \
libxinerama-dev libxcursor-dev \
@ -25,9 +22,19 @@ steps:
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr -Wno-dev
- cmake --build build
backend_options:
kubernetes:
resources:
requests:
memory: 500Mi
cpu: 200m
limits:
memory: 1000Mi
cpu: 1000m
- name: Prepare files for release
image: ubuntu:22.04
package:
name: Prepare files for release
image: ubuntu:25.10
commands:
- apt-get update
- apt-get install zip -y
@ -38,15 +45,16 @@ steps:
- cd /tmp
- |
zip -r paulxstretch-standalone.zip Standalone && \
mv paulxstretch-standalone.zip $DRONE_WORKSPACE/dist/
mv paulxstretch-standalone.zip $CI_WORKSPACE/dist/
- |
zip -r paulxstretch-vst3.zip VST3 && \
mv paulxstretch-vst3.zip $DRONE_WORKSPACE/dist/
mv paulxstretch-vst3.zip $CI_WORKSPACE/dist/
- name: Release paulxstretch
release:
name: Release paulxstretch
image: plugins/gitea-release
settings:
api_key:
from_secret: GITEA_TOKEN
base_url: https://git.badhouseplants.net
from_secret: GITEA_TOKEN_PUBLIC
base_url: https://gitea.badhouseplants.net
files: dist/*

View File

@ -1,9 +1,18 @@
FROM ubuntu AS builder
RUN apt-get update -y &&\
apt-get install -y build-essential libasound2 cmake fftw-dev pkg-config libx11-dev x11-xserver-utils libxrandr-dev libxinerama-dev libxcursor-dev libfreetype6-dev libfftw3-dev libasound2-dev libjack-dev
COPY . /src
FROM ubuntu:25.10 AS builder
RUN apt-get update -y && \
apt-get install -y \
build-essential libasound2t64 \
cmake fftw-dev pkg-config libx11-dev \
x11-xserver-utils libxrandr-dev \
libxinerama-dev libxcursor-dev \
libfreetype6-dev libfftw3-dev \
libasound2-dev libjack-dev
WORKDIR /src
RUN cmake -B build -S /src -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -Wno-dev
COPY . .
RUN cmake -B build -S /src \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr -Wno-dev
RUN cmake --build build
FROM ubuntu

Binary file not shown.

View File

@ -1,3 +0,0 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
}