commit 703a5b7b032d0a6a6fb423277e21caf241bef0eb parent 3e2c011747e56e2d13db1b39916693e40e721661 Author: d.levin256@gmail.com <d.levin256@gmail.com> Date: Tue, 13 Nov 2018 23:14:14 +0300 Test AVX512 Diffstat:
M | azure-pipelines.yml | | | 13 | +++++++++++++ |
1 file changed, 13 insertions(+), 0 deletions(-)
diff --git a/azure-pipelines.yml b/azure-pipelines.yml @@ -99,3 +99,15 @@ jobs: ninja cd tests ctest -V + +- job: Windows_AVX512 + pool: WIN-AVX512 + steps: + - script: | + mkdir build + cd build + call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat" + cmake -GNinja -DCMAKE_CXX_COMPILER="C:/LLVM/bin/clang-cl.exe" -DARCH_FLAGS="-mavx512f -mavx512cd -mavx512bw -mavx512dq -mavx512vl" -DCMAKE_CXX_FLAGS=-m64 -DCMAKE_BUILD_TYPE=Release .. + ninja + cd tests + ctest -V +\ No newline at end of file