Skip to content

Commit

Permalink
Liquid gitian builds: move more to liquid name
Browse files Browse the repository at this point in the history
  • Loading branch information
instagibbs committed Apr 22, 2019
1 parent b89a64c commit 2a50ec1
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
6 changes: 5 additions & 1 deletion contrib/gitian-descriptors/gitian-liquid-linux.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: "elements-linux-0.18"
name: "liquid-linux-0.18"
enable_cache: true
suites:
- "bionic"
Expand Down Expand Up @@ -151,7 +151,10 @@ script: |
CONFIG_SITE=${BASEPREFIX}/`echo "${HOSTS}" | awk '{print $1;}'`/share/config.site ./configure --prefix=/
make dist
SOURCEDIST=`echo elements-*.tar.gz`
LIQUIDSOURCEDIST=`echo elements-*.tar.gz`
LIQUIDSOURCEDIST=`echo ${LIQUIDSOURCEDIST} | sed 's/elements/liquid/'`
DISTNAME=`echo ${SOURCEDIST} | sed 's/.tar.*//'`
DISTNAME=`echo ${DISTNAME} | sed 's/elements/liquid/'`
# Correct tar file order
mkdir -p temp
pushd temp
Expand Down Expand Up @@ -202,3 +205,4 @@ script: |
done
mkdir -p $OUTDIR/src
mv $SOURCEDIST $OUTDIR/src
mv $OUTDIR/src/$SOURCEDIST $OUTDIR/src/$LIQUIDSOURCEDIST
6 changes: 5 additions & 1 deletion contrib/gitian-descriptors/gitian-liquid-osx.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: "elements-osx-0.18"
name: "liquid-osx-0.18"
enable_cache: true
suites:
- "bionic"
Expand Down Expand Up @@ -111,7 +111,10 @@ script: |
CONFIG_SITE=${BASEPREFIX}/`echo "${HOSTS}" | awk '{print $1;}'`/share/config.site ./configure --prefix=/
make dist
SOURCEDIST=`echo elements-*.tar.gz`
LIQUIDSOURCEDIST=`echo elements-*.tar.gz`
LIQUIDSOURCEDIST=`echo ${LIQUIDSOURCEDIST} | sed 's/elements/liquid/'`
DISTNAME=`echo ${SOURCEDIST} | sed 's/.tar.*//'`
DISTNAME=`echo ${DISTNAME} | sed 's/elements/liquid/'`
# Correct tar file order
mkdir -p temp
Expand Down Expand Up @@ -172,4 +175,5 @@ script: |
done
mkdir -p $OUTDIR/src
mv $SOURCEDIST $OUTDIR/src
mv $OUTDIR/src/$SOURCEDIST $OUTDIR/src/$LIQUIDSOURCEDIST
mv ${OUTDIR}/${DISTNAME}-x86_64-*.tar.gz ${OUTDIR}/${DISTNAME}-osx64.tar.gz
5 changes: 4 additions & 1 deletion contrib/gitian-descriptors/gitian-liquid-win.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: "elements-win-0.18"
name: "liquid-win-0.18"
enable_cache: true
suites:
- "bionic"
Expand Down Expand Up @@ -129,7 +129,10 @@ script: |
CONFIG_SITE=${BASEPREFIX}/`echo "${HOSTS}" | awk '{print $1;}'`/share/config.site ./configure --prefix=/
make dist
SOURCEDIST=`echo elements-*.tar.gz`
LIQUIDSOURCEDIST=`echo elements-*.tar.gz`
LIQUIDSOURCEDIST=`echo ${LIQUIDSOURCEDIST} | sed 's/elements/liquid/'`
DISTNAME=`echo ${SOURCEDIST} | sed 's/.tar.*//'`
DISTNAME=`echo ${DISTNAME} | sed 's/elements/liquid/'`
# Correct tar file order
mkdir -p temp
Expand Down

0 comments on commit 2a50ec1

Please sign in to comment.