ci/lin: install to system, not HOME

This commit is contained in:
umarcor 2020-11-30 08:57:41 +01:00
parent de4e19ceea
commit 0d20bf2123
1 changed files with 3 additions and 5 deletions

View File

@ -30,14 +30,12 @@ jobs:
- name: Build
run: |
autoconf
./configure --prefix=$HOME
make install
./configure
sudo make install
make check
- name: Test
run: |
export PATH=$HOME/bin:$PATH
sh .github/test.sh
run: sh .github/test.sh
win: