12345678910111213 |
- #!/bin/sh
- if [ -x "$(which brew)" ]; then
- export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:$(brew --prefix libffi)/lib/pkgconfig"
- export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:$(brew --prefix libarchive)/lib/pkgconfig"
- export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:$(brew --prefix cfitsio)/lib/lib/pkgconfig"
- export CGO_LDFLAGS="$CGO_LDFLAGS -Wl,-no_warn_duplicate_libraries"
- fi
- export CGO_LDFLAGS_ALLOW="-s|-w"
- export CGO_CFLAGS_ALLOW="-Xpreprocessor"
- go test ./...
|