10 Commits

Author SHA1 Message Date
f53d06412d Add renovate.json 2024-09-11 14:11:41 +00:00
Nikolai Rodionov
4257a0f8ba build: Fix zip command 2023-08-19 18:36:44 +02:00
Nikolai Rodionov
90c0a7b7ee build: Fix commands for the package step 2023-08-19 18:20:37 +02:00
Nikolai Rodionov
bdc8618d6e build: Install zip 2023-08-19 17:11:16 +02:00
Nikolai Rodionov
8eb3eb5ebe Use zipped artifacts 2023-08-19 16:22:28 +02:00
Nikolai Rodionov
e92fa5db8b Fix the release path in build 2023-08-19 15:27:11 +02:00
Nikolai Rodionov
efe63eaf3e Fix the source path in build 2023-08-19 12:56:01 +02:00
Nikolai Rodionov
4f07b14e76 Switch to docker runners 2023-08-19 09:29:10 +02:00
Nikolai Rodionov
18f523f8ce Update build and changelog 2023-08-19 09:28:09 +02:00
Nikolai Rodionov
4c16b647d5 Build with JUCE 7.0.2 2023-08-18 15:32:42 +02:00
3 changed files with 8 additions and 14 deletions

View File

@@ -1,18 +1,9 @@
FROM ubuntu:25.10 AS builder FROM ubuntu AS builder
RUN apt-get update -y && \ RUN apt-get update -y &&\
apt-get install -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
build-essential libasound2t64 \ COPY . /src
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 WORKDIR /src
COPY . . RUN cmake -B build -S /src -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -Wno-dev
RUN cmake -B build -S /src \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr -Wno-dev
RUN cmake --build build RUN cmake --build build
FROM ubuntu FROM ubuntu

BIN
paulxstretch-vst3.zip Normal file

Binary file not shown.

3
renovate.json Normal file
View File

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