Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Asteborg <xnorpx@outlook.com>2023-06-17 17:44:04 +0300
committerMarcus Asteborg <xnorpx@outlook.com>2023-06-21 15:59:38 +0300
commita8de4d8f91d6248226f248d950dd9945c74994af (patch)
treebe72d04e8f64d8285764c06834a4c8faca026feb
parent763bd345498efed58dc6fa06acb9f580e94ca368 (diff)
Remove Appveyor CI, replaced with Github actions
-rw-r--r--.appveyor.yml37
1 files changed, 0 insertions, 37 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
deleted file mode 100644
index a0f4a776..00000000
--- a/.appveyor.yml
+++ /dev/null
@@ -1,37 +0,0 @@
-image: Visual Studio 2015
-configuration:
-- Debug
-- DebugDLL
-- DebugDLL_fixed
-- Release
-- ReleaseDLL
-- ReleaseDLL_fixed
-
-platform:
-- Win32
-- x64
-
-environment:
- api_key:
- secure: kR3Ac0NjGwFnTmXdFrR8d6VXjdk5F7L4F/BilC4nvaM=
-
-build:
- project: win32\VS2015\opus.sln
- parallel: true
- verbosity: minimal
-
-after_build:
-- cd %APPVEYOR_BUILD_FOLDER%
-- 7z a opus.zip win32\VS2015\%PLATFORM%\%CONFIGURATION%\opus.??? include\*.h
-
-test_script:
-- cd %APPVEYOR_BUILD_FOLDER%\win32\VS2015\%PLATFORM%\%CONFIGURATION%
-- test_opus_api.exe
-- test_opus_decode.exe
-- test_opus_encode.exe
-
-artifacts:
-- path: opus.zip
-
-on_success:
-- ps: if ($env:api_key -and "$env:configuration/$env:platform" -eq "ReleaseDLL_fixed/x64") { Start-AppveyorBuild -ApiKey $env:api_key -ProjectSlug 'opus-tools' }