File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed
Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change 9191 - name : Test
9292 run : |
9393 cd _build && ./test/test_xsimd
94+
95+ build-windows-arm64 :
96+ name : ' MSVC arm64'
97+ defaults :
98+ run :
99+ shell : bash {0}
100+ runs-on : windows-11-arm
101+ steps :
102+ - name : Setup compiler
103+ uses : ilammy/msvc-dev-cmd@v1
104+ with :
105+ arch : ${{ matrix.target }}
106+ - name : Setup Ninja
107+ run : |
108+ python3 -m pip install --upgrade pip setuptools wheel
109+ python3 -m pip install ninja
110+ - name : Checkout xsimd
111+ uses : actions/checkout@v3
112+ - name : Setup
113+ run : |
114+ mkdir _build
115+ cd _build && cmake .. -DBUILD_TESTS=ON -DDOWNLOAD_DOCTEST=ON -DBUILD_BENCHMARK=ON -DBUILD_EXAMPLES=ON -DCMAKE_BUILD_TYPE=Release -G Ninja
116+ - name : Build
117+ run : |
118+ cd _build && cmake --build .
119+ - name : Testing xsimd
120+ run : |
121+ cd _build && ./test/test_xsimd
You can’t perform that action at this time.
0 commit comments