Skip to content

Commit

Permalink
Add a new pattern for NFS directories: /Volumes/net
Browse files Browse the repository at this point in the history
Summary:
Add a new pattern for NFS directories: /Volumes/net to un-break macOS tests.  Without this,
mini-cluster data directories end up on NFS, leading to test failures.

Test Plan: Jenkins: skip

Reviewers: bogdan, robert, oleg, amitanand, sergei

Reviewed By: sergei

Subscribers: ybase

Differential Revision: https://phabricator.dev.yugabyte.com/D6371
  • Loading branch information
mbautin committed Mar 21, 2019
1 parent 3a61698 commit 9eaf15b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-support/common-build-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1605,7 +1605,7 @@ is_jenkins_phabricator_build() {

# Check if we're using an NFS partition in YugaByte's build environment.
is_src_root_on_nfs() {
if [[ $YB_SRC_ROOT =~ ^/(n|z|u|net)/ ]]; then
if [[ $YB_SRC_ROOT =~ ^/(n|z|u|net|Volumes/net)/ ]]; then
return 0
fi
return 1
Expand Down

0 comments on commit 9eaf15b

Please sign in to comment.