This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
DISTRHO-Ports
mirror of
https://github.com/DISTRHO/DISTRHO-Ports
Watch
1
Star
0
Fork
0
Code
Releases
5
Activity
Browse Source
CI: test builds on macOS
tags/2020-12-27
falkTX
3 years ago
parent
d2c490cc11
commit
68377e08c3
3 changed files
with
17 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-0
.travis.yml
+5
-0
.travis/before_install.sh
+6
-0
.travis/install.sh
+ 6
- 0
.travis.yml
View File
@@ -24,6 +24,12 @@ jobs:
env:
- TARGET="win64"
# macOS native build
- os: osx
compiler: gcc
env:
- TARGET="macos"
before_install:
- bash ${TRAVIS_BUILD_DIR}/.travis/before_install.sh
+ 5
- 0
.travis/before_install.sh
View File
@@ -2,6 +2,11 @@
set -e
# nothing to do for macOS native
if [ "${TARGET}" = "macos" ]; then
exit 0
fi
sudo add-apt-repository -y ppa:kxstudio-debian/kxstudio
sudo add-apt-repository -y ppa:kxstudio-debian/toolchain
+ 6
- 0
.travis/install.sh
View File
@@ -2,6 +2,12 @@
set -e
# Special macOS native handling
if [ "${TARGET}" = "macos" ]; then
brew install meson || true
exit 0
fi
# common
sudo apt-get install -y build-essential meson
Write
Preview
Loading…
Cancel
Save