diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 71e95a6..bfe0988 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -15,7 +15,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-20.04, macos-latest, windows-latest] + os: [ubuntu-20.04, macos-latest, windows-latest, windows-2019] steps: - uses: actions/checkout@v2 diff --git a/README.md b/README.md index 80bdb4d..f1ee7fd 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,6 @@ cpp-peglib ========== [![](https://github.com/yhirose/cpp-peglib/workflows/CMake/badge.svg)](https://github.com/yhirose/cpp-peglib/actions) -[![Build Status](https://ci.appveyor.com/api/projects/status/github/yhirose/cpp-peglib?branch=master&svg=true)](https://ci.appveyor.com/project/yhirose/cpp-peglib) C++17 header-only [PEG](http://en.wikipedia.org/wiki/Parsing_expression_grammar) (Parsing Expression Grammars) library. You can start using it right away just by including `peglib.h` in your project. diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 3b39dc2..0000000 --- a/appveyor.yml +++ /dev/null @@ -1,26 +0,0 @@ -clone_depth: 5 - -environment: - matrix: - - JOB: Visual Studio 2017 - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 - CMAKE_GENERATOR: "Visual Studio 15 2017" - - JOB: Visual Studio 2019 - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 - CMAKE_GENERATOR: "Visual Studio 16 2019" - -platform: - - x86 - - x64 - -configuration: - - Release - - Debug - -build_script: - - mkdir build && cd build - - cmake .. -Wno-dev -G"%CMAKE_GENERATOR%" - - cmake --build . --config %CONFIGURATION% - -test_script: - - ctest -C %CONFIGURATION% -V