Merge pull request #1106 from sfztools/lfs-migration
Migrate audio files to LFS
This commit is contained in:
commit
ae42f4a882
24 changed files with 14 additions and 6 deletions
8
.gitattributes
vendored
8
.gitattributes
vendored
|
|
@ -2,14 +2,12 @@
|
||||||
.*/** export-ignore
|
.*/** export-ignore
|
||||||
appveyor.yml export-ignore
|
appveyor.yml export-ignore
|
||||||
/scripts/appveyor/** export-ignore
|
/scripts/appveyor/** export-ignore
|
||||||
|
|
||||||
/vst/external/VST_SDK/VST3_SDK/**/CMakeLists.txt export-ignore
|
/vst/external/VST_SDK/VST3_SDK/**/CMakeLists.txt export-ignore
|
||||||
/vst/external/VST_SDK/VST3_SDK/public.sdk/samples export-ignore
|
/vst/external/VST_SDK/VST3_SDK/public.sdk/samples export-ignore
|
||||||
/vst/external/VST_SDK/VST3_SDK/public.sdk/source/vst/*wrapper/** export-ignore
|
/vst/external/VST_SDK/VST3_SDK/public.sdk/source/vst/*wrapper/** export-ignore
|
||||||
/vst/external/VST_SDK/VST3_SDK/public.sdk/source/vst/interappaudio/** export-ignore
|
/vst/external/VST_SDK/VST3_SDK/public.sdk/source/vst/interappaudio/** export-ignore
|
||||||
/vst/external/VST_SDK/VST3_SDK/public.sdk/source/vst/testsuite/** export-ignore
|
/vst/external/VST_SDK/VST3_SDK/public.sdk/source/vst/testsuite/** export-ignore
|
||||||
/vst/external/VST_SDK/VST3_SDK/public.sdk/source/vst/utility/test/** export-ignore
|
/vst/external/VST_SDK/VST3_SDK/public.sdk/source/vst/utility/test/** export-ignore
|
||||||
|
|
||||||
/editor/external/vstgui4/**/CMakeLists.txt export-ignore
|
/editor/external/vstgui4/**/CMakeLists.txt export-ignore
|
||||||
/editor/external/vstgui4/vstgui/Documentation/** export-ignore
|
/editor/external/vstgui4/vstgui/Documentation/** export-ignore
|
||||||
/editor/external/vstgui4/vstgui/doxygen/** export-ignore
|
/editor/external/vstgui4/vstgui/doxygen/** export-ignore
|
||||||
|
|
@ -20,19 +18,17 @@ appveyor.yml export-ignore
|
||||||
/editor/external/vstgui4/vstgui/uidescription/icontroller.h -export-ignore
|
/editor/external/vstgui4/vstgui/uidescription/icontroller.h -export-ignore
|
||||||
/editor/external/vstgui4/vstgui/vstgui_standalone* export-ignore
|
/editor/external/vstgui4/vstgui/vstgui_standalone* export-ignore
|
||||||
/editor/external/vstgui4/vstgui/vstgui_uidescription* export-ignore
|
/editor/external/vstgui4/vstgui/vstgui_uidescription* export-ignore
|
||||||
|
|
||||||
/external/st_audiofile/thirdparty/dr_libs/old/** export-ignore
|
/external/st_audiofile/thirdparty/dr_libs/old/** export-ignore
|
||||||
/external/st_audiofile/thirdparty/dr_libs/tests/** export-ignore
|
/external/st_audiofile/thirdparty/dr_libs/tests/** export-ignore
|
||||||
|
|
||||||
/external/filesystem/test/** export-ignore
|
/external/filesystem/test/** export-ignore
|
||||||
|
|
||||||
/external/abseil-cpp/conanfile.py export-ignore
|
/external/abseil-cpp/conanfile.py export-ignore
|
||||||
/external/abseil-cpp/**/BUILD.bazel export-ignore
|
/external/abseil-cpp/**/BUILD.bazel export-ignore
|
||||||
/external/abseil-cpp/ci/** export-ignore
|
/external/abseil-cpp/ci/** export-ignore
|
||||||
|
|
||||||
/external/simde/docker/** export-ignore
|
/external/simde/docker/** export-ignore
|
||||||
/external/simde/test/** export-ignore
|
/external/simde/test/** export-ignore
|
||||||
/external/simde/meson* export-ignore
|
/external/simde/meson* export-ignore
|
||||||
/external/simde/*.py export-ignore
|
/external/simde/*.py export-ignore
|
||||||
/external/simde/*.yml export-ignore
|
/external/simde/*.yml export-ignore
|
||||||
/external/simde/*.toml export-ignore
|
/external/simde/*.toml export-ignore
|
||||||
|
**/*.wav filter=lfs diff=lfs merge=lfs -text
|
||||||
|
**/*.flac filter=lfs diff=lfs merge=lfs -text
|
||||||
|
|
|
||||||
12
.github/workflows/build.yml
vendored
12
.github/workflows/build.yml
vendored
|
|
@ -40,6 +40,9 @@ jobs:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
|
lfs: true
|
||||||
|
- name: Fetch LFS objects
|
||||||
|
run: git lfs checkout
|
||||||
- name: Set up dependencies
|
- name: Set up dependencies
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update && \
|
sudo apt-get update && \
|
||||||
|
|
@ -227,6 +230,9 @@ jobs:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
|
lfs: true
|
||||||
|
- name: Fetch LFS objects
|
||||||
|
run: git lfs checkout
|
||||||
- name: Create Build Environment
|
- name: Create Build Environment
|
||||||
working-directory: ${{runner.workspace}}
|
working-directory: ${{runner.workspace}}
|
||||||
run: cmake -E make_directory build
|
run: cmake -E make_directory build
|
||||||
|
|
@ -339,6 +345,9 @@ jobs:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
|
lfs: true
|
||||||
|
- name: Fetch LFS objects
|
||||||
|
run: git lfs checkout
|
||||||
- name: Build with GNU make
|
- name: Build with GNU make
|
||||||
shell: bash
|
shell: bash
|
||||||
run: make -C "$GITHUB_WORKSPACE" -f generic.mk -j2
|
run: make -C "$GITHUB_WORKSPACE" -f generic.mk -j2
|
||||||
|
|
@ -374,6 +383,9 @@ jobs:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
|
lfs: true
|
||||||
|
- name: Fetch LFS objects
|
||||||
|
run: git lfs checkout
|
||||||
- name: Set up dependencies
|
- name: Set up dependencies
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update && \
|
sudo apt-get update && \
|
||||||
|
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Add table
Reference in a new issue