summaryrefslogtreecommitdiff
path: root/.appveyor.yml
diff options
context:
space:
mode:
authorVictor Costan <costan@google.com>2021-09-01 16:21:26 +0000
committerVictor Costan <pwnall@chromium.org>2021-09-01 16:57:31 +0000
commitfe18b46322727fe4bc6939326ba6bde1e0858b61 (patch)
treedc0f1b6bf6b192a4fae068397cbfa4473881305b /.appveyor.yml
parenta7ddc144d14a7f3715b996aab2649eeec622c7e5 (diff)
downloadsnappy-git-fe18b46322727fe4bc6939326ba6bde1e0858b61.tar.gz
Switch CI to GitHub Actions.
PiperOrigin-RevId: 394247182
Diffstat (limited to '.appveyor.yml')
-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 7229a25..0000000
--- a/.appveyor.yml
+++ /dev/null
@@ -1,37 +0,0 @@
-# Build matrix / environment variables are explained on:
-# https://www.appveyor.com/docs/appveyor-yml/
-# This file can be validated on: https://ci.appveyor.com/tools/validate-yaml
-
-version: "{build}"
-
-environment:
- matrix:
- # AppVeyor currently has no custom job name feature.
- # http://help.appveyor.com/discussions/questions/1623-can-i-provide-a-friendly-name-for-jobs
- - JOB: Visual Studio 2019
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
- CMAKE_GENERATOR: Visual Studio 16 2019
-
-platform:
- - x86
- - x64
-
-configuration:
- - RelWithDebInfo
- - Debug
-
-build_script:
- - git submodule update --init --recursive
- - mkdir build
- - cd build
- - if "%platform%"=="x86" (set CMAKE_GENERATOR_PLATFORM="Win32")
- else (set CMAKE_GENERATOR_PLATFORM="%platform%")
- - cmake --version
- - cmake .. -G "%CMAKE_GENERATOR%" -A "%CMAKE_GENERATOR_PLATFORM%"
- -DCMAKE_CONFIGURATION_TYPES="%CONFIGURATION%" -DSNAPPY_REQUIRE_AVX2=ON
- - cmake --build . --config %CONFIGURATION%
- - cd ..
-
-test_script:
- - build\%CONFIGURATION%\snappy_unittest
- - build\%CONFIGURATION%\snappy_benchmark