Skip to content

Commit

Permalink
Add test for issue 160
Browse files Browse the repository at this point in the history
  • Loading branch information
uraimo committed Feb 28, 2025
1 parent d78ce44 commit 5ddef8a
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/issue160.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Test for issue 160

on:
push:
branches:
- master
pull_request:
branches:
- master

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: uraimo/run-on-arch-action@5397f9e30a9b62422f302092631c99ae1effcd9e # v2.8.1
name: Test
id: runcmd
with:
arch: s390x
githubToken: ${{ github.token }}
distro: ubuntu_latest
install: |
apt-get update -q -y
apt-get install -y cmake make g++ git
run: |
git clone https://github.com/RoaringBitmap/CRoaring.git
cd CRoaring
cmake -DCMAKE_BUILD_TYPE=Release -DENABLE_ROARING_TESTS=ON -B build
cmake --build build -j=2
ctest --output-on-failure --test-dir build

0 comments on commit 5ddef8a

Please sign in to comment.