Skip to content

Commit 59c5a22

Browse files
authored
Put the working dir on the pkgconfig path
After building the v8 lib (with ./build.py), the pkgconfig file (v8.pc) ends up in the working directory. To compile any Go code (e.g., to run the tests), that needs to be on the pkgconfig search path.
1 parent 99150d7 commit 59c5a22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ before_install: |
1010
install:
1111
- ./build.py --use_ccache
1212
script:
13-
- go test -v
13+
- PKG_CONFIG_PATH=$PKG_CONFIG_PATH:$PWD go test -v

0 commit comments

Comments
 (0)