From b03cb72508d7c85382cec0f3485ed87de0f7f231 Mon Sep 17 00:00:00 2001 From: Oskar M Date: Sat, 27 Jan 2024 15:42:17 +0000 Subject: [PATCH] Update build-test-gc.yml --- .github/workflows/build-test-gc.yml | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-test-gc.yml b/.github/workflows/build-test-gc.yml index 9fbe0fe..154f604 100644 --- a/.github/workflows/build-test-gc.yml +++ b/.github/workflows/build-test-gc.yml @@ -16,7 +16,8 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + #python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.10"] steps: - uses: actions/checkout@v3 @@ -26,9 +27,14 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install system dependencies for graphcut functionality run: sudo apt-get install -y libboost-python-dev build-essential - - name: Install with test dependencies + - name: Locate libboost run: | - python -m pip install --upgrade pip - python -m pip install -v .[test] - - name: Test with pytest - run: pytest tests/graphcut_/* + cat /etc/ld.so.conf.d/* + ls /usr/lib/x86_64-linux-gnu/libboost_* + ls /lib/x86_64-linux-gnu/libboost_* +# - name: Install with test dependencies +# run: | +# python -m pip install --upgrade pip +# python -m pip install -v .[test] +# - name: Test with pytest +# run: pytest tests/graphcut_/*