Skip to content

add roaring_bitmap_rank_many(): get rank() values in Bulk (#527) #868

add roaring_bitmap_rank_many(): get rank() values in Bulk (#527)

add roaring_bitmap_rank_many(): get rank() values in Bulk (#527) #868

Workflow file for this run

name: VS16-ARM-CI
on: [push, pull_request]
permissions:
contents: read
jobs:
ci:
name: windows-vs16
runs-on: windows-2019
strategy:
fail-fast: false
matrix:
include:
- {gen: Visual Studio 16 2019, arch: ARM}
- {gen: Visual Studio 16 2019, arch: ARM64}
steps:
- name: checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Configure
run: |
mkdir build
cd build && cmake -G "${{matrix.gen}}" -A ${{matrix.arch}} ..
- name: Build
run: cmake --build build --config Release
- name: Build Debug
run: cmake --build build --config Debug