summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-04-20 07:50:22 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-04-20 07:50:22 (GMT)
commit286def7af7659d72d4a752b056948c41e88121b8 (patch)
treedc25995b8325833c10b1ee76dfb19f3a2bfb56a9 /.travis.yml
parent75ae3c494cd6e59303963964efedc91f76675357 (diff)
downloadtcl-286def7af7659d72d4a752b056948c41e88121b8.zip
tcl-286def7af7659d72d4a752b056948c41e88121b8.tar.gz
tcl-286def7af7659d72d4a752b056948c41e88121b8.tar.bz2
Move the needed apt package in .travis.yml to the top, so they can be shared between the images.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml25
1 files changed, 10 insertions, 15 deletions
diff --git a/.travis.yml b/.travis.yml
index e10ca7c..5672c0b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,5 +1,15 @@
sudo: false
language: c
+addons:
+ apt:
+ packages:
+ - binutils-mingw-w64-i686
+ - binutils-mingw-w64-x86-64
+ - gcc-mingw-w64
+ - gcc-mingw-w64-base
+ - gcc-mingw-w64-i686
+ - gcc-mingw-w64-x86-64
+ - gcc-multilib
matrix:
include:
# Testing on Linux with various compilers
@@ -146,13 +156,6 @@ matrix:
os: linux
dist: bionic
compiler: x86_64-w64-mingw32-gcc
- addons:
- apt:
- packages:
- - gcc-mingw-w64-base
- - binutils-mingw-w64-x86-64
- - gcc-mingw-w64-x86-64
- - gcc-mingw-w64
env:
- BUILD_DIR=win
- CFGOPT="--host=x86_64-w64-mingw32 --enable-64bit --enable-threads"
@@ -167,14 +170,6 @@ matrix:
os: linux
dist: bionic
compiler: i686-w64-mingw32-gcc
- addons:
- apt:
- packages:
- - gcc-mingw-w64-base
- - binutils-mingw-w64-i686
- - gcc-mingw-w64-i686
- - gcc-mingw-w64
- - gcc-multilib
env:
- BUILD_DIR=win
- CFGOPT="--host=i686-w64-mingw32 --enable-threads"