Skip to content

Commit

Permalink
BLD Use same prefix dir on all targets so artifacts can be collected
Browse files Browse the repository at this point in the history
  • Loading branch information
unode committed Nov 21, 2018
1 parent 51bf4bc commit b53216e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ build-and-test-ubuntu-non-static:
- make
- make modules
- make check
- make install prefix=${PWD}/prefix-test
- PATH=${PWD}/prefix-test/bin:$PATH ./run-tests.sh
- make install prefix=${PWD}
- PATH=${PWD}/bin:$PATH ./run-tests.sh


build-and-test-ubuntu-devel:
Expand All @@ -97,8 +97,8 @@ build-and-test-ubuntu-devel:
- make static
- make modules
- make check
- make install prefix=${PWD}/prefix-test
- PATH=${PWD}/prefix-test/bin:$PATH ./run-tests.sh
- make install prefix=${PWD}
- PATH=${PWD}/bin:$PATH ./run-tests.sh

artifacts:
when: on_success
Expand Down

0 comments on commit b53216e

Please sign in to comment.