Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | configuration to be tested |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | travis-8.7-wine |
Files: | files | file ages | folders |
SHA3-256: |
74460824f8feef743f3c9b79eb93f78f |
User & Date: | jan.nijtmans 2018-10-28 19:28:46.591 |
Context
2018-10-28
| ||
19:30 | typo check-in: b924308250 user: jan.nijtmans tags: travis-8.7-wine | |
19:28 | configuration to be tested check-in: 74460824f8 user: jan.nijtmans tags: travis-8.7-wine | |
19:21 | Experiment: See if we can build and test using cross-compiled mingw-w64 with wine check-in: 4c6c98a736 user: jan.nijtmans tags: travis-8.7-wine | |
Changes
Changes to .travis.yml.
1 2 3 4 5 | dist: trusty sudo: false language: c matrix: include: | | < < < < < < < | < < < < < < < < < < | < > | | | < < < < < | | > > | < < | < < | | < < < < < | < < | < < < < < < < < < < < < < < < < < | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | dist: trusty sudo: false language: c matrix: include: # Test with mingw 32 bit - os: linux compiler: x86_64-w64-mingw32-gcc addons: apt: packages: - gcc-mingw-w64-base - binutils-mingw-w64-i686 - gcc-mingw-w64-i686 - gcc-mingw-w64 - gcc-multilib - wine env: - BUILD_DIR=win # Test with mingw 64 bit - os: linux compiler: x86_64-w64-mingw32-g+cc addons: apt: packages: - gcc-mingw-w64-base - binutils-mingw-w64-x86-64 - gcc-mingw-w64-x86-64 - gcc-mingw-w64 - wine env: - BUILD_DIR=win before_install: - eval "${MATRIX_EVAL}" - export ERROR_ON_FAILURES=1 - cd ${BUILD_DIR} install: - test -n "$NO_DIRECT_CONFIGURE" || ./configure ${CFGOPT} script: - make - make test-tcl |