Browse Source

[gitian] set correct PATH for wrappers

0.13
MarcoFalke 8 years ago
parent
commit
fa61756842
  1. 6
      contrib/gitian-descriptors/gitian-linux.yml
  2. 6
      contrib/gitian-descriptors/gitian-osx.yml
  3. 6
      contrib/gitian-descriptors/gitian-win.yml

6
contrib/gitian-descriptors/gitian-linux.yml

@ -68,11 +68,11 @@ script: | @@ -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
@ -82,8 +82,10 @@ script: | @@ -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

6
contrib/gitian-descriptors/gitian-osx.yml

@ -77,11 +77,11 @@ script: | @@ -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
@ -95,8 +95,10 @@ script: | @@ -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

6
contrib/gitian-descriptors/gitian-win.yml

@ -94,12 +94,12 @@ script: | @@ -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
@ -109,9 +109,11 @@ script: | @@ -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

Loading…
Cancel
Save