Update build and changelog
This commit is contained in:
parent
4c16b647d5
commit
18f523f8ce
60
.drone.yml
60
.drone.yml
@ -1,38 +1,42 @@
|
||||
---
|
||||
kind: pipeline
|
||||
type: kubernetes
|
||||
name: Build paulxstretch
|
||||
name: Release paulxstretch
|
||||
|
||||
trigger:
|
||||
branch:
|
||||
exclude:
|
||||
- main
|
||||
event:
|
||||
- push
|
||||
- tag
|
||||
|
||||
steps:
|
||||
- name: Init git submodules with themes
|
||||
image: alpine/git
|
||||
- name: Build
|
||||
image: ubuntu:22.04
|
||||
commands:
|
||||
- git submodule update --init --recursive
|
||||
- name: Build and push the docker image
|
||||
image: plugins/docker
|
||||
when:
|
||||
branch:
|
||||
- dev
|
||||
settings:
|
||||
registry: git.badhouseplants.net
|
||||
username: allanger
|
||||
password:
|
||||
from_secret: GITEA_TOKEN
|
||||
repo: git.badhouseplants.net/${DRONE_REPO}
|
||||
tags: latest
|
||||
- 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
|
||||
- |
|
||||
cmake -B build -S /src \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr -Wno-dev
|
||||
- cmake --build build
|
||||
|
||||
# - name: Build the Linux version
|
||||
# image: ubuntu
|
||||
# commands:
|
||||
# - apt update -y
|
||||
# - apt 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
|
||||
# - cmake -B build -S $DRONE_WORKSPACE -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -Wno-dev
|
||||
# - cmake --build build
|
||||
#
|
||||
- name: Prepare files for release
|
||||
image: ubuntu:22.04
|
||||
commands:
|
||||
- mkdir dist
|
||||
- cp -r build/release/Standalone/paulxstretch dist/
|
||||
- cp -r build/release/VST3/PaulXStretch.vst3 dist/
|
||||
|
||||
- name: Release paulxstretch
|
||||
image: plugins/gitea-release
|
||||
settings:
|
||||
api_key:
|
||||
from_secret: GITEA_TOKEN
|
||||
base_url: https://git.badhouseplants.net
|
||||
files: dist/*
|
||||
|
@ -1,5 +1,8 @@
|
||||
|
||||
## PaulXStretch Change History
|
||||
**v1.7.0**
|
||||
- Update JUCE to 7.0.2
|
||||
- Started using submodules for deps
|
||||
|
||||
**v1.6.0** (2022-06-16)
|
||||
- Added live output recording feature
|
||||
|
Loading…
Reference in New Issue
Block a user