1
Fork 0

More packaging stuff

Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
falkTX 2022-02-12 23:38:22 +00:00
parent 7d02a17892
commit 335db79d14
No known key found for this signature in database
GPG Key ID: CDBAA37ABC74FBA0
5 changed files with 1078 additions and 14 deletions

View File

@ -487,6 +487,24 @@ jobs:
path: |
*.zip
source-tarball:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Create source tarball
run: |
make tarball
- name: Set sha8
id: slug
run: echo "::set-output name=sha8::$(echo ${{ github.sha }} | cut -c1-8)"
- uses: actions/upload-artifact@v2
with:
name: ${{ github.event.repository.name }}-win64-${{ github.event.pull_request.number || steps.slug.outputs.sha8 }}
path: |
../cardinal-*.tar.xz
plugin-validation:
runs-on: ubuntu-20.04
steps:

View File

@ -228,7 +228,7 @@ deps/unzipfx/unzipfx2cat.exe:
# Clean step
clean:
$(MAKE) distclean -C carla
$(MAKE) distclean -C carla $(CARLA_EXTRA_ARGS) CAN_GENERATE_LV2_TTL=false STATIC_PLUGIN_TARGET=true
$(MAKE) clean -C deps
$(MAKE) clean -C dpf/dgl
$(MAKE) clean -C dpf/utils/lv2-ttl-generator
@ -267,26 +267,27 @@ install:
# --------------------------------------------------------------
# Tarball step, for releases
# --lzma
tarball:
rm -f ../cardinal-$(VERSION).tar
tar -c \
tar -c --lzma \
--exclude=".appveyor*" \
--exclude=".ci*" \
--exclude=".clang*" \
--exclude=".drone*" \
--exclude=".editor*" \
--exclude=".git*" \
--exclude="*.kdev*" \
--exclude=".travis*" \
--exclude=".vscode*" \
--exclude="*.kdev4" \
--exclude="carla/source/modules/juce_*" \
--exclude="carla/source/native-plugins/external/zynaddsubfx*" \
--exclude="src/Rack/dep/osdialog/osdialog_*" \
--exclude="src/Rack/icon.*" \
--exclude=bin \
--exclude=build \
--exclude=jucewrapper \
--exclude=lv2export \
--exclude=patches \
--exclude=carla/data \
--exclude=carla/source/frontend \
--exclude=carla/source/interposer \
@ -305,9 +306,6 @@ tarball:
--exclude=dpf/examples \
--exclude=dpf/lac \
--exclude=dpf/tests \
--exclude=jucewrapper \
--exclude=lv2export \
--exclude=patches \
--exclude=plugins/.kdev_include_paths \
--exclude=plugins/todo.txt \
--exclude=plugins/AriaModules/res/Arcane \
@ -362,7 +360,7 @@ tarball:
--transform='s,^\.\.,-.-.,' \
--transform='s,^\.,cardinal-$(VERSION),' \
--transform='s,^-\.-\.,..,' \
-f ../cardinal-$(VERSION).tar .
-f ../cardinal-$(VERSION).tar.xz .
# --------------------------------------------------------------

View File

@ -67,7 +67,7 @@ Dependencies for using system libraries, that is, with `SYSDEPS=true`:
```
# common
sudo pacman -S dbus libgl liblo libsndfile libx11 libxcursor libxext libxrandr python3
sudo pacman -S dbus file libgl liblo libsndfile libx11 libxcursor libxext libxrandr python3
# system libraries
sudo pacman -S libarchive libsamplerate jansson speexdsp
```
@ -76,7 +76,7 @@ Dependencies for vendored libraries:
```
# common
sudo pacman -S dbus libgl liblo libsndfile libx11 libxcursor libxext libxrandr python3
sudo pacman -S dbus file libgl liblo libsndfile libx11 libxcursor libxext libxrandr python3
# nedeed by vendored libraries
sudo pacman -S cmake wget
```
@ -87,7 +87,7 @@ Dependencies for using system libraries, that is, with `SYSDEPS=true`:
```
# common
sudo apt install libdbus-1-dev libgl1-mesa-dev liblo-dev libsndfile1-dev libx11-dev libxcursor-dev libxext-dev libxrandr-dev python3
sudo apt install libdbus-1-dev libgl1-mesa-dev liblo-dev libmagic-dev libsndfile1-dev libx11-dev libxcursor-dev libxext-dev libxrandr-dev python3
# system libraries
sudo apt install libarchive-dev libjansson-dev libsamplerate0-dev libspeexdsp-dev
```
@ -96,7 +96,7 @@ Dependencies for vendored libraries:
```
# common
sudo apt install libdbus-1-dev libgl1-mesa-dev liblo-dev libsndfile1-dev libx11-dev libxcursor-dev libxext-dev libxrandr-dev python3
sudo apt install libdbus-1-dev libgl1-mesa-dev liblo-dev libmagic-dev libsndfile1-dev libx11-dev libxcursor-dev libxext-dev libxrandr-dev python3
# nedeed by vendored libraries
sudo apt install cmake wget
```

1048
include/stb_image_write.h Normal file

File diff suppressed because it is too large Load Diff

View File

@ -50,7 +50,7 @@
// used in Window::screenshot
#define STB_IMAGE_WRITE_IMPLEMENTATION
#include "../src/Rack/dep/glfw/deps/stb_image_write.h"
#include "stb_image_write.h"
#include "DistrhoUI.hpp"
#include "Application.hpp"