-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'merge2023' into vs2022
# Conflicts: # TerpstraSysEx.jucer
- Loading branch information
Showing
110 changed files
with
5,725 additions
and
2,453 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
name: Build Lumatone Editor | ||
|
||
on: [push, pull_request] | ||
|
||
env: {} | ||
|
||
jobs: | ||
build-lte-linux: | ||
name: Build Lumatone Editor (Linux) | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install JUCE to $HOME | ||
run: | | ||
wget https://github.com/juce-framework/JUCE/releases/download/6.1.6/juce-6.1.6-linux.zip | ||
unzip -d ~ juce-6.1.6-linux.zip | ||
- name: Install APT dependencies | ||
run: | | ||
sudo apt update | ||
sudo apt install libssh2-1-dev libasound2-dev libjack-jackd2-dev ladspa-sdk libcurl4-openssl-dev libfreetype6-dev libx11-dev libxcomposite-dev libxcursor-dev libxcursor-dev libxext-dev libxinerama-dev libxrandr-dev libxrender-dev libwebkit2gtk-4.0-dev libglu1-mesa-dev mesa-common-dev | ||
- name: Build Lumatone Editor | ||
run: | | ||
~/JUCE/Projucer --resave TerpstraSysEx.jucer | ||
cd Builds/Linux | ||
make CONFIG=Release | ||
- name: List build directory | ||
run: | | ||
cd Builds/Linux | ||
find | ||
- name: Upload Lumatone Editor | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: LumatoneEditor-Linux | ||
path: Builds/Linux/build/Lumatone\ Editor | ||
if-no-files-found: error | ||
|
||
build-lte-macos: | ||
name: Build Lumatone Editor (macOS) | ||
|
||
runs-on: macos-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install JUCE to $HOME | ||
run: | | ||
wget https://github.com/juce-framework/JUCE/releases/download/6.1.6/juce-6.1.6-osx.zip | ||
unzip -d ~ juce-6.1.6-osx.zip | ||
- name: Build Lumatone Editor | ||
run: | | ||
~/JUCE/Projucer.app/Contents/MacOS/Projucer --resave TerpstraSysEx.jucer | ||
cd Builds/MacOSX | ||
xcodebuild -configuration Release | ||
- name: List build directory | ||
run: | | ||
cd Builds/MacOSX | ||
find . | ||
- name: Upload Lumatone Editor | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: LumatoneEditor-macOS | ||
path: Builds/MacOSX/build/Release | ||
if-no-files-found: error | ||
|
||
build-lte-windows: | ||
name: Build Lumatone Editor (Windows) | ||
|
||
runs-on: windows-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: microsoft/[email protected] | ||
- name: Install JUCE to C:\ | ||
run: | | ||
Invoke-WebRequest https://github.com/juce-framework/JUCE/releases/download/6.1.6/juce-6.1.6-windows.zip -O juce-6.1.6-windows.zip | ||
7z x juce-6.1.6-windows.zip -oC:\ | ||
- name: Build Lumatone Editor | ||
run: | | ||
bash -c '/c/JUCE/Projucer --resave TerpstraSysEx.jucer' | ||
cd Builds/VisualStudio2019 | ||
msbuild "Lumatone Editor.sln" /p:configuration=Release | ||
- name: List build directory | ||
run: | | ||
cd Builds/VisualStudio2019 | ||
Get-ChildItem -Recurse | ||
- name: Upload Lumatone Editor | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: LumatoneEditor-Windows | ||
path: "Builds/VisualStudio2019/x64/Release/App/Lumatone Editor.exe" | ||
if-no-files-found: error | ||
- name: Upload dynamic libraries | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: LumatoneEditor-Windows | ||
path: Libraries/win64/bin/*.dll | ||
if-no-files-found: error | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,5 @@ | |
/Installers/InnoSetup/Install* | ||
/Installers/InnoSetup/archive* | ||
/Installers/Packages/build* | ||
.vscode | ||
/Releases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Copyright 2022 Lumatone Inc. | ||
|
||
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | ||
|
||
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | ||
|
||
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | ||
|
||
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Oops, something went wrong.