ci/lin: split Build and Test steps
This commit is contained in:
parent
b8ea1e5cfe
commit
de4e19ceea
|
|
@ -27,14 +27,16 @@ jobs:
|
||||||
sudo apt update -qq
|
sudo apt update -qq
|
||||||
sudo apt install -y make g++ git bison flex gperf libreadline-dev autoconf
|
sudo apt install -y make g++ git bison flex gperf libreadline-dev autoconf
|
||||||
|
|
||||||
- name: Build and test
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
export PATH=$HOME/bin:$PATH
|
|
||||||
autoconf
|
autoconf
|
||||||
./configure --prefix=$HOME
|
./configure --prefix=$HOME
|
||||||
make install
|
make install
|
||||||
make check
|
make check
|
||||||
|
|
||||||
|
- name: Test
|
||||||
|
run: |
|
||||||
|
export PATH=$HOME/bin:$PATH
|
||||||
sh .github/test.sh
|
sh .github/test.sh
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue