Add vst sdk to clang-tidy

This commit is contained in:
Paul Fd 2020-03-13 00:24:37 +01:00
parent 779aacc07b
commit c44a51cea1
2 changed files with 10 additions and 1 deletions

View file

@ -14,8 +14,10 @@ jobs:
apt:
packages:
- clang-tidy
- wget
- unzip
- libsndfile-dev
install: skip
install: .travis/download_vst_sdk.sh
script: scripts/run_clang_tidy.sh
- name: "Linux amd64 tests"

7
.travis/download_vst_sdk.sh Executable file
View file

@ -0,0 +1,7 @@
#!/bin/bash
set -ex
vst_sdk_archive="vst-sdk_3.6.14_build-24_2019-11-29.zip"
wget "https://download.steinberg.net/sdk_downloads/${vst_sdk_archive}"
mkdir -p vst/external
unzip -ouq ${vst_sdk_archive} -d vst/external