1
Fork 0
mirror of https://github.com/redstrate/Auracite.git synced 2025-04-21 20:27:46 +00:00

Figured it out, believe it's because of relative paths

This commit is contained in:
Joshua Goins 2024-11-05 21:45:22 -05:00
parent 4ccfc0b03f
commit e9f65e4545

View file

@ -82,8 +82,8 @@ jobs:
key: ${{ steps.cache-prefix-restore.outputs.cache-primary-key }} key: ${{ steps.cache-prefix-restore.outputs.cache-primary-key }}
- name: Build - name: Build
run: | run: |
export KDE_INCLUDEDIR=${{ github.workspace }}/prefix/include export KDE_INCLUDEDIR=${{ github.workspace }}/../prefix/include
export KDE_LIBDIR=${{ github.workspace }}/prefix/lib64 export KDE_LIBDIR=${{ github.workspace }}/../prefix/lib64
cargo build --verbose cargo build --verbose
- name: Run clippy - name: Run clippy
run: cargo clippy run: cargo clippy