Skip to content

Commit

Permalink
Fix test workflow for custom install path 🛠️
Browse files Browse the repository at this point in the history
- Removed unused 'PREFIX' from env in '.github/workflows/test.yml'
- Added 'PREFIX=${{ runner.temp }}' to 'make install' and 'make uninstall' commands
  • Loading branch information
horta committed Jan 7, 2025
1 parent a9ffca7 commit 74b67e3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on: push

env:
CC: gcc
PREFIX: ${{ runner.temp }}

jobs:
test:
Expand All @@ -27,7 +26,7 @@ jobs:
run: make check

- name: make install
run: make install
run: make install PREFIX=${{ runner.temp }}

- name: make uninstall
run: make uninstall
run: make uninstall PREFIX=${{ runner.temp }}

0 comments on commit 74b67e3

Please # to comment.