Skip to content

Commit

Permalink
More partitions
Browse files Browse the repository at this point in the history
  • Loading branch information
lemire committed Jul 16, 2020
1 parent 85cc9cc commit 2503cc4
Show file tree
Hide file tree
Showing 5 changed files with 59 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/armtests.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

name: Go-CI
name: Go-ARM-CI

on: [push, pull_request]

Expand All @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
go-version: [1.13.x, 1.14.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/basictests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
go-version: [1.13.x, 1.14.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/legacytests.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

name: Go-CI
name: Go-legacy-CI

on: [push, pull_request]

Expand All @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
go-version: [1.13.x, 1.14.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
Expand Down
27 changes: 27 additions & 0 deletions .github/workflows/macostests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@

name: Go-macos-CI

on: [push, pull_request]

jobs:
test:
strategy:
matrix:
go-version: [1.13.x, 1.14.x]
platform: [macos-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: |
go test -race -run TestConcurrent*
go build -tags appengine
go test -tags appengine
go test -v
go test -v ./roaring64
go test -v ./BitSliceIndexing
27 changes: 27 additions & 0 deletions .github/workflows/windowstests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@

name: Go-Windows-CI

on: [push, pull_request]

jobs:
test:
strategy:
matrix:
go-version: [1.13.x, 1.14.x]
platform: [windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: |
go test -race -run TestConcurrent*
go build -tags appengine
go test -tags appengine
go test -v
go test -v ./roaring64
go test -v ./BitSliceIndexing

0 comments on commit 2503cc4

Please sign in to comment.