diff --git a/.github/workflows/issue160.yml b/.github/workflows/issue160.yml new file mode 100644 index 0000000..e676d40 --- /dev/null +++ b/.github/workflows/issue160.yml @@ -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