Skip to content

Commit

Permalink
cheap trick to override path
Browse files Browse the repository at this point in the history
  • Loading branch information
inknos committed Sep 11, 2023
1 parent c8c0fc4 commit 0ab8f31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ jobs:
run: which gcc; ls -l /usr/local/bin/{gcc,g++,cc,c++}

- name: Configure cmake
run: cmake -S . -B build
run: export PATH=/usr/lib64/ccache:/usr/lib/ccache:$PATH; cmake -S . -B build

- name: Build dnf5
run: cmake --build build
run: export PATH=/usr/lib64/ccache:/usr/lib/ccache:$PATH; cmake --build build

- name: Display ccache statistics
run: ccache -s

0 comments on commit 0ab8f31

Please sign in to comment.