Attempting something.

This commit is contained in:
Nicolas Patry 2024-09-14 21:08:04 +02:00
parent 2b18537f85
commit 45c0129976
No known key found for this signature in database
GPG Key ID: 64AF4752B2967863
1 changed files with 3 additions and 0 deletions

View File

@ -34,6 +34,9 @@ jobs:
uses: mxschmitt/action-tmate@v3 uses: mxschmitt/action-tmate@v3
- name: Python tests. - name: Python tests.
run: | run: |
sudo mkdir -p /run/opengl-driver/lib
sudo find /usr/lib . -name 'libcuda.so*' -exec ln -s {} /run/opengl-driver/lib/ \;
nix develop .#test --command pytest -svv integration-tests/ --release nix develop .#test --command pytest -svv integration-tests/ --release
env: env:
HF_TOKEN: ${{ secrets.HF_TOKEN }} HF_TOKEN: ${{ secrets.HF_TOKEN }}