Skip to content

Lazy robin hood hashing #169

Lazy robin hood hashing

Lazy robin hood hashing #169

Workflow file for this run

name: tests
on:
push:
branches: [ "main", "dev" ]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ "nogil-3.9" ]
steps:
- uses: actions/checkout@v3
- name: set up python ${{ matrix.python-version }}
uses: dpdani/setup-python@nogil
with:
python-version: ${{ matrix.python-version }}
- name: system info
run: |
uname -a
cat /proc/cpuinfo
- name: check nogil
run: |
python -c "import sys; print(sys.flags.nogil);"
- name: install dependencies & cereggii
run: |
python -m pip install --upgrade pip
pip -V
pip install .[dev]
- name: test with pytest
run: |
ulimit -c unlimited
ulimit -c
sudo mkdir -p /cores/
sudo mkdir -p ./so-libs
sudo chmod -R 777 /cores/
sudo chmod -R 777 ./so-libs
echo "/cores/core-%e-%p-%t" | sudo tee /proc/sys/kernel/core_pattern
sudo cat /proc/sys/kernel/core_pattern
pytest --junitxml=junit/test-results-${{ matrix.python-version }}.xml
if: ${{ always() }}
- name: prepare shared libs
run: |
find $pythonLocation/lib/ -name '*.so*' -exec mkdir -p ./so-libs"{}" \;
find $pythonLocation/lib/ -name '*.so*' -exec cp "{}" ./so-libs"{}" \;
find /usr/lib/x86_64-linux-gnu/ -name '*.so*' -exec mkdir -p ./so-libs"{}" \;
find /usr/lib/x86_64-linux-gnu/ -name '*.so*' -exec cp "{}" ./so-libs"{}" \;
find /lib/x86_64-linux-gnu/ -name '*.so*' -exec mkdir -p ./so-libs"{}" \;
find /lib/x86_64-linux-gnu/ -name '*.so*' -exec cp "{}" ./so-libs"{}" \;
mkdir -p ./so-libs/lib64
cp /lib64/ld-linux-x86-64.so.2 ./so-libs/lib64/ld-linux-x86-64.so.2
tar czf so-libs.tar.gz ./so-libs
if: ${{ failure() }}
- name: upload core dump file
uses: actions/upload-artifact@v3
with:
name: core-dump
path: /cores
if: ${{ always() }}
- name: upload shared libs
uses: actions/upload-artifact@v3
with:
name: shared-libs
path: ./so-libs.tar.gz
if: ${{ always() }}
- name: upload pytest test results
uses: actions/upload-artifact@v3
with:
name: pytest-results-${{ matrix.python-version }}
path: junit/test-results-${{ matrix.python-version }}.xml
if: ${{ always() }}