diff --git a/.appveyor.yml b/.appveyor.yml index b60ec401..e0f92e8d 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -7,18 +7,6 @@ environment: appveyor_build_worker_image: macos INSTALL_DIR: sfizz-$(APPVEYOR_REPO_TAG_NAME)-macos - - job_name: Windows x86 - appveyor_build_worker_image: Visual Studio 2019 - platform: x86 - VCPKG_TRIPLET: x86-windows-static - PATH: C:\Program Files (x86)\Inno Setup 6;%PATH% - - - job_name: Windows x64 - appveyor_build_worker_image: Visual Studio 2019 - platform: x64 - VCPKG_TRIPLET: x64-windows-static - PATH: C:\Program Files (x86)\Inno Setup 6;%PATH% - # Made with https://github.com/sfztools/code-signing CODESIGN_IDENTITY: codesign.sfz.tools CODESIGN_P12: @@ -54,35 +42,11 @@ for: - name: macOS DMG path: "sfizz-*.dmg" -- matrix: - only: - - job_name: Windows x86 - cache: c:\tools\vcpkg\installed\ -> appveyor.yml - install: call %APPVEYOR_BUILD_FOLDER%\scripts\appveyor\install.cmd - before_build: call %APPVEYOR_BUILD_FOLDER%\scripts\appveyor\before_build.cmd - build_script: call %APPVEYOR_BUILD_FOLDER%\scripts\appveyor\build.cmd - after_build: call %APPVEYOR_BUILD_FOLDER%\scripts\appveyor\after_build.cmd - artifacts: - - name: x86 Setup - path: "sfizz-*.exe" - -- matrix: - only: - - job_name: Windows x64 - cache: c:\tools\vcpkg\installed\ -> appveyor.yml - install: call %APPVEYOR_BUILD_FOLDER%\scripts\appveyor\install.cmd - before_build: call %APPVEYOR_BUILD_FOLDER%\scripts\appveyor\before_build.cmd - build_script: call %APPVEYOR_BUILD_FOLDER%\scripts\appveyor\build.cmd - after_build: call %APPVEYOR_BUILD_FOLDER%\scripts\appveyor\after_build.cmd - artifacts: - - name: x64 Setup - path: "sfizz-*.exe" - deploy: - provider: GitHub auth_token: secure: xOugGAynvnZdc0DXaL3rlgMf4CICFLkdO8JxoRfLQMKJhkj/kZ4d8h7NCFneDzXG - artifact: macOS DMG,x86 Setup,x64 Setup + artifact: macOS DMG draft: false prerelease: false force_update: true diff --git a/scripts/appveyor/after_build.cmd b/scripts/appveyor/after_build.cmd deleted file mode 100644 index 069a079d..00000000 --- a/scripts/appveyor/after_build.cmd +++ /dev/null @@ -1,4 +0,0 @@ -@echo off - -iscc.exe /dARCH=%platform% innosetup.iss -move *.exe ../ diff --git a/scripts/appveyor/before_build.cmd b/scripts/appveyor/before_build.cmd deleted file mode 100644 index 0b7804cd..00000000 --- a/scripts/appveyor/before_build.cmd +++ /dev/null @@ -1,15 +0,0 @@ -git submodule update --init --recursive - -mkdir build && cd build - -if %platform%==x86 set RELEASE_ARCH=Win32 -if %platform%==x64 set RELEASE_ARCH=x64 - -cmake .. -G"Visual Studio 16 2019" -A"%RELEASE_ARCH%"^ - -DSFIZZ_BENCHMARKS=OFF^ - -DSFIZZ_TESTS=ON^ - -DSFIZZ_LV2=ON^ - -DSFIZZ_VST=ON^ - -DCMAKE_BUILD_TYPE=Release^ - -DVCPKG_TARGET_TRIPLET=%VCPKG_TRIPLET%^ - -DCMAKE_TOOLCHAIN_FILE=C:/Tools/vcpkg/scripts/buildsystems/vcpkg.cmake diff --git a/scripts/appveyor/build.cmd b/scripts/appveyor/build.cmd deleted file mode 100644 index 94838421..00000000 --- a/scripts/appveyor/build.cmd +++ /dev/null @@ -1,5 +0,0 @@ -cmake --build . --target sfizz_tests --config Release -j2 -.\tests\Release\sfizz_tests.exe -cmake --build . --target sfizz_lv2 --config Release -j2 -cmake --build . --target sfizz_lv2_ui --config Release -j2 -cmake --build . --target sfizz_vst3 --config Release -j2 diff --git a/scripts/appveyor/install.cmd b/scripts/appveyor/install.cmd deleted file mode 100644 index 3f7b2cc0..00000000 --- a/scripts/appveyor/install.cmd +++ /dev/null @@ -1,9 +0,0 @@ -choco install -y innosetup - -REM Uncomment the next 4 lines to force vcpkg update -REM cd c:\tools\vcpkg\ -REM git pull -REM .\bootstrap-vcpkg.bat -REM cd %APPVEYOR_BUILD_FOLDER% - -REM vcpkg install libsndfile:%VCPKG_TRIPLET%