From 1a6b9926f6244b2529a5a700fa3bdd5a5e990f62 Mon Sep 17 00:00:00 2001 From: Nicolas Patry Date: Mon, 16 Sep 2024 11:22:17 +0200 Subject: [PATCH] missing lib. --- .github/workflows/nix_integration_tests.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nix_integration_tests.yaml b/.github/workflows/nix_integration_tests.yaml index 5bfec134..7d5790be 100644 --- a/.github/workflows/nix_integration_tests.yaml +++ b/.github/workflows/nix_integration_tests.yaml @@ -33,9 +33,9 @@ jobs: - name: Python tests. run: | sudo mkdir -p /run/opengl-driver/lib/ - export NVIDIA=$(nix build --print-out-paths .#nvidia-driver) + export NVIDIA=$(nix build --print-out-paths .#nvidia-driver)/lib/ sudo find $NVIDIA . -name 'libcuda.so*' -exec ln -s {} /run/opengl-driver/lib/ \; sudo find $NVIDIA . -name 'libnvidia-ml.so*' -exec ln -s {} /run/opengl-driver/lib/ \; - nix develop .#test --command pytest -svv integration-tests/ --release + nix develop .#test --command pytest -svvx integration-tests/ --release env: HF_TOKEN: ${{ secrets.HF_TOKEN }}