Skip to content

Merge pull request #432 from RoaringBitmap/trying_to_fix_module_mess #487

Merge pull request #432 from RoaringBitmap/trying_to_fix_module_mess

Merge pull request #432 from RoaringBitmap/trying_to_fix_module_mess #487

Workflow file for this run

name: Go-ARM-CI
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
go-version: [1.17.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Test
run: |
GOARCH=arm go build
GOARCH=arm go build ./roaring64
GOARCH=arm go build ./BitSliceIndexing
GOARCH=arm64 go build
GOARCH=arm64 go build ./roaring64
GOARCH=arm64 go build ./BitSliceIndexing