File tree Expand file tree Collapse file tree 6 files changed +20
-19
lines changed Expand file tree Collapse file tree 6 files changed +20
-19
lines changed Original file line number Diff line number Diff line change @@ -256,13 +256,13 @@ then
256
256
if [[ -n " $USE_LXC " ]]
257
257
then
258
258
sudo apt-get install lxc
259
- bin/make-base-vm --suite trusty --arch amd64 --lxc
259
+ bin/make-base-vm --suite bionic --arch amd64 --lxc
260
260
elif [[ -n " $USE_DOCKER " ]]
261
261
then
262
262
sudo apt-get install docker-ce
263
- bin/make-base-vm --suite trusty --arch amd64 --docker
263
+ bin/make-base-vm --suite bionic --arch amd64 --docker
264
264
else
265
- bin/make-base-vm --suite trusty --arch amd64
265
+ bin/make-base-vm --suite bionic --arch amd64
266
266
fi
267
267
popd
268
268
fi
Original file line number Diff line number Diff line change 2
2
name : " bitcoin-linux-0.17"
3
3
enable_cache : true
4
4
suites :
5
- - " trusty "
5
+ - " bionic "
6
6
architectures :
7
7
- " amd64"
8
8
packages :
9
9
- " curl"
10
10
- " g++-aarch64-linux-gnu"
11
- - " g++-4.8 -aarch64-linux-gnu"
12
- - " gcc-4.8 -aarch64-linux-gnu"
11
+ - " g++-7 -aarch64-linux-gnu"
12
+ - " gcc-7 -aarch64-linux-gnu"
13
13
- " binutils-aarch64-linux-gnu"
14
14
- " g++-arm-linux-gnueabihf"
15
- - " g++-4.8 -arm-linux-gnueabihf"
16
- - " gcc-4.8 -arm-linux-gnueabihf"
15
+ - " g++-7 -arm-linux-gnueabihf"
16
+ - " gcc-7 -arm-linux-gnueabihf"
17
17
- " binutils-arm-linux-gnueabihf"
18
- - " g++-4.8 -multilib"
19
- - " gcc-4.8 -multilib"
18
+ - " g++-7 -multilib"
19
+ - " gcc-7 -multilib"
20
20
- " binutils-gold"
21
- - " git-core "
21
+ - " git"
22
22
- " pkg-config"
23
23
- " autoconf"
24
24
- " libtool"
Original file line number Diff line number Diff line change 1
1
---
2
2
name : " bitcoin-dmg-signer"
3
3
suites :
4
- - " trusty "
4
+ - " bionic "
5
5
architectures :
6
6
- " amd64"
7
7
packages :
Original file line number Diff line number Diff line change 2
2
name : " bitcoin-osx-0.17"
3
3
enable_cache : true
4
4
suites :
5
- - " trusty "
5
+ - " bionic "
6
6
architectures :
7
7
- " amd64"
8
8
packages :
9
9
- " ca-certificates"
10
10
- " curl"
11
11
- " g++"
12
- - " git-core "
12
+ - " git"
13
13
- " pkg-config"
14
14
- " autoconf"
15
15
- " librsvg2-bin"
Original file line number Diff line number Diff line change 1
1
---
2
2
name : " bitcoin-win-signer"
3
3
suites :
4
- - " trusty "
4
+ - " bionic "
5
5
architectures :
6
6
- " amd64"
7
7
packages :
Original file line number Diff line number Diff line change 2
2
name : " bitcoin-win-0.17"
3
3
enable_cache : true
4
4
suites :
5
- - " trusty "
5
+ - " bionic "
6
6
architectures :
7
7
- " amd64"
8
8
packages :
9
9
- " curl"
10
10
- " g++"
11
- - " git-core "
11
+ - " git"
12
12
- " pkg-config"
13
13
- " autoconf"
14
14
- " libtool"
@@ -21,6 +21,7 @@ packages:
21
21
- " zip"
22
22
- " ca-certificates"
23
23
- " python"
24
+ - " rename"
24
25
remotes :
25
26
- " url " : " https://github.com/bitcoin/bitcoin.git"
26
27
" dir " : " bitcoin"
@@ -29,7 +30,7 @@ script: |
29
30
WRAP_DIR=$HOME/wrapped
30
31
HOSTS="i686-w64-mingw32 x86_64-w64-mingw32"
31
32
CONFIGFLAGS="--enable-reduce-exports --disable-bench --disable-gui-tests"
32
- FAKETIME_HOST_PROGS="g++ ar ranlib nm windres strip objcopy"
33
+ FAKETIME_HOST_PROGS="ar ranlib nm windres strip objcopy"
33
34
FAKETIME_PROGS="date makensis zip"
34
35
HOST_CFLAGS="-O2 -g"
35
36
HOST_CXXFLAGS="-O2 -g"
@@ -84,7 +85,7 @@ script: |
84
85
done
85
86
for prog in gcc g++; do
86
87
echo '#!/usr/bin/env bash' > ${WRAP_DIR}/${i}-${prog}
87
- echo "REAL=\`which -a ${i}-${prog} | grep -v ${WRAP_DIR}/${i}-${prog} | head -1\`" >> ${WRAP_DIR}/${i}-${prog}
88
+ echo "REAL=\`which -a ${i}-${prog}-posix | grep -v ${WRAP_DIR}/${i}-${prog} | head -1\`" >> ${WRAP_DIR}/${i}-${prog}
88
89
echo 'export LD_PRELOAD=/usr/lib/x86_64-linux-gnu/faketime/libfaketime.so.1' >> ${WRAP_DIR}/${i}-${prog}
89
90
echo "export FAKETIME=\"$1\"" >> ${WRAP_DIR}/${i}-${prog}
90
91
echo "export COMPILER_PATH=${WRAP_DIR}/${i}" >> ${WRAP_DIR}/${i}-${prog}
You can’t perform that action at this time.
0 commit comments