Skip to content
This repository was archived by the owner on Oct 18, 2023. It is now read-only.

Commit 279b191

Browse files
author
Simon Hofmann
committed
Updated build config for macOS
1 parent 2b67252 commit 279b191

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,12 +102,10 @@ script:
102102
- if [[ $BUILD_TASK != "prebuild" ]]; then
103103
cd ./ci/$BUILD_TASK;
104104
npm run $BUILD_TASK $TAG;
105-
cd -;
106105
fi
107106
- if [[ $BUILD_TASK == "prebuild" && $TRAVIS_TAG != "" ]]; then
108107
cd ./ci/$BUILD_TASK;
109108
npm run $BUILD_TASK $TAG;
110-
cd -;
111109
fi
112110

113111
after_success:

ci/test/test.sh

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@ then
66
docker run $image
77
elif [[ "$TRAVIS_OS_NAME" == "osx" ]];
88
then
9-
cd ../../test &&\
10-
npm install --unsafe-perm &&\
9+
cd ../../ &&\
10+
npm install &&\
11+
cd test &&\
12+
npm install &&\
1113
npm test &&\
12-
npm run test-externalMemTracking
14+
npm run test-externalMemTrackingg
1315
fi

0 commit comments

Comments
 (0)