Skip to content
This repository has been archived by the owner on Nov 29, 2023. It is now read-only.

which trials and tribulations #3

Merged
merged 3 commits into from
Apr 12, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
19 changes: 19 additions & 0 deletions .travis.yml
@@ -0,0 +1,19 @@
os: linux
language: cpp
matrix:
include:
- env: TEST=shellcheck
services:
- docker
script: |
set -e
shopt -s globstar nullglob
CHECK=( **/*.sh )
[[ ${#CHECK[@]} -eq 0 ]] && exit
docker run -v $(pwd):$(pwd) -w $(pwd) \
koalaman/shellcheck-alpine:v0.4.6 -x "${CHECK[@]}"
branches:
only:
- master
notifications:
email: false
4 changes: 3 additions & 1 deletion ups/eupspkg.cfg.sh
@@ -1,7 +1,9 @@
#!/bin/bash

# Work around SIP on MacOSX
build() {
export DYLD_LIBRARY_PATH=$LSST_LIBRARY_PATH
python $(which scons) -j$NJOBS prefix="$PREFIX" version="$VERSION" cc="$CC"
python "$(command -v scons)" -j"$NJOBS" prefix="$PREFIX" version="$VERSION" cc="$CC"
}

install() {
Expand Down