Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[gitian] set correct PATH for wrappers #8194

Merged
merged 1 commit into from Jun 14, 2016
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
6 changes: 4 additions & 2 deletions contrib/gitian-descriptors/gitian-linux.yml
Expand Up @@ -68,11 +68,11 @@ script: |
done
}

export PATH=${WRAP_DIR}:${PATH}

# Faketime for depends so intermediate results are comparable
export PATH_orig=${PATH}
create_global_faketime_wrappers "2000-01-01 12:00:00"
create_per-host_faketime_wrappers "2000-01-01 12:00:00"
export PATH=${WRAP_DIR}:${PATH}

cd bitcoin
BASEPREFIX=`pwd`/depends
Expand All @@ -82,8 +82,10 @@ script: |
done

# Faketime for binaries
export PATH=${PATH_orig}
create_global_faketime_wrappers "${REFERENCE_DATETIME}"
create_per-host_faketime_wrappers "${REFERENCE_DATETIME}"
export PATH=${WRAP_DIR}:${PATH}

# Create the release tarball using (arbitrarily) the first host
./autogen.sh
Expand Down
6 changes: 4 additions & 2 deletions contrib/gitian-descriptors/gitian-osx.yml
Expand Up @@ -77,11 +77,11 @@ script: |
done
}

export PATH=${WRAP_DIR}:${PATH}

# Faketime for depends so intermediate results are comparable
export PATH_orig=${PATH}
create_global_faketime_wrappers "2000-01-01 12:00:00"
create_per-host_faketime_wrappers "2000-01-01 12:00:00"
export PATH=${WRAP_DIR}:${PATH}

cd bitcoin
BASEPREFIX=`pwd`/depends
Expand All @@ -95,8 +95,10 @@ script: |
done

# Faketime for binaries
export PATH=${PATH_orig}
create_global_faketime_wrappers "${REFERENCE_DATETIME}"
create_per-host_faketime_wrappers "${REFERENCE_DATETIME}"
export PATH=${WRAP_DIR}:${PATH}

# Create the release tarball using (arbitrarily) the first host
./autogen.sh
Expand Down
6 changes: 4 additions & 2 deletions contrib/gitian-descriptors/gitian-win.yml
Expand Up @@ -94,12 +94,12 @@ script: |
done
}

export PATH=${WRAP_DIR}:${PATH}

# Faketime for depends so intermediate results are comparable
export PATH_orig=${PATH}
create_global_faketime_wrappers "2000-01-01 12:00:00"
create_per-host_faketime_wrappers "2000-01-01 12:00:00"
create_per-host_linker_wrapper "2000-01-01 12:00:00"
export PATH=${WRAP_DIR}:${PATH}

cd bitcoin
BASEPREFIX=`pwd`/depends
Expand All @@ -109,9 +109,11 @@ script: |
done

# Faketime for binaries
export PATH=${PATH_orig}
create_global_faketime_wrappers "${REFERENCE_DATETIME}"
create_per-host_faketime_wrappers "${REFERENCE_DATETIME}"
create_per-host_linker_wrapper "${REFERENCE_DATETIME}"
export PATH=${WRAP_DIR}:${PATH}

# Create the release tarball using (arbitrarily) the first host
./autogen.sh
Expand Down