diff --git a/.appveyor.yml b/.appveyor_old.yml similarity index 100% rename from .appveyor.yml rename to .appveyor_old.yml diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 3cbb84a..e22a457 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -11,6 +11,7 @@ jobs: strategy: matrix: os: [windows-latest] + flags: ["/std:c++11", "/std:c++latest"] optimize: [/O2] steps: - name: Checkout @@ -20,4 +21,4 @@ jobs: CXX: ${{ matrix.compiler }} CXXFLAGS: ${{ matrix.flags }} ${{ matrix.optimize }} run: | - mkdir build && cd build && cmake -DPHMAP_BUILD_TESTS=ON -DPHMAP_BUILD_EXAMPLES=ON -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON .. && cmake --build . && make test + mkdir build && cd build && cmake -DPHMAP_BUILD_TESTS=ON -DPHMAP_BUILD_EXAMPLES=ON -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON .. && cmake --build . && cmake --build build --target RUN_TESTS diff --git a/README.md b/README.md index 8950080..bd4ff91 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ -# The Parallel Hashmap ![Linux](https://github.com/greg7mdp/parallel-hashmap/actions/workflows/linux.yml/badge.svg) ![MacOS](https://github.com/greg7mdp/parallel-hashmap/actions/workflows/macos.yml/badge.svg) ![Windows](https://github.com/greg7mdp/parallel-hashmap/actions/workflows/windows.yml/badge.svg) +# The Parallel Hashmap [![Linux](https://github.com/greg7mdp/parallel-hashmap/actions/workflows/linux.yml/badge.svg)](https://github.com/greg7mdp/parallel-hashmap/actions) [![MacOS](https://github.com/greg7mdp/parallel-hashmap/actions/workflows/macos.yml/badge.svg)](https://github.com/greg7mdp/parallel-hashmap/actions) [![Windows](https://github.com/greg7mdp/parallel-hashmap/actions/workflows/windows.yml/badge.svg)](https://github.com/greg7mdp/parallel-hashmap/actions) ## Overview