prepare branch for travis-ci
This commit is contained in:
32
.travis.yml
32
.travis.yml
@@ -4,11 +4,11 @@ matrix:
|
|||||||
- os: linux
|
- os: linux
|
||||||
env: DESCR=linux-xenial-gcc HINTS=linux
|
env: DESCR=linux-xenial-gcc HINTS=linux
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
script: "cd sys/unix/ && sh setup.sh hints/$HINTS && cd ../../ && make install"
|
script: "cd sys/unix/ && sh setup.sh hints/$HINTS && cd ../../ && make fetch-lua && make install"
|
||||||
- os: linux
|
- os: linux
|
||||||
env: DESCR=linux-xenial-clang HINTS=linux
|
env: DESCR=linux-xenial-clang HINTS=linux
|
||||||
compiler: clang
|
compiler: clang
|
||||||
script: "cd sys/unix/ && sh setup.sh hints/$HINTS && cd ../../ && make install"
|
script: "cd sys/unix/ && sh setup.sh hints/$HINTS && cd ../../ && make fetch-lua && make install"
|
||||||
- os: linux
|
- os: linux
|
||||||
env: DESCR=linux-xenial-gcc-x11 HINTS=linux-x11
|
env: DESCR=linux-xenial-gcc-x11 HINTS=linux-x11
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
@@ -18,7 +18,7 @@ matrix:
|
|||||||
- libx11-dev
|
- libx11-dev
|
||||||
- libxaw7-dev
|
- libxaw7-dev
|
||||||
- xfonts-utils
|
- xfonts-utils
|
||||||
script: "cd sys/unix/ && sh setup.sh hints/$HINTS && cd ../../ && make install"
|
script: "cd sys/unix/ && sh setup.sh hints/$HINTS && cd ../../ && make fetch-lua && make install"
|
||||||
- os: linux
|
- os: linux
|
||||||
env: DESCR=linux-xenial-gcc-qt5 HINTS=linux-qt5
|
env: DESCR=linux-xenial-gcc-qt5 HINTS=linux-qt5
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
@@ -31,7 +31,7 @@ matrix:
|
|||||||
- qtbase5-dev
|
- qtbase5-dev
|
||||||
- qtmultimedia5-dev
|
- qtmultimedia5-dev
|
||||||
- qtbase5-dev-tools
|
- qtbase5-dev-tools
|
||||||
script: "cd sys/unix/ && sh setup.sh hints/$HINTS && cd ../../ && QT_SELECT=5 make MOC=moc install"
|
script: "cd sys/unix/ && sh setup.sh hints/$HINTS && cd ../../ && QT_SELECT=5 && make fetch-lua && make MOC=moc install"
|
||||||
- os: linux
|
- os: linux
|
||||||
env: DESCR=linux-bionic-gcc-x11 HINTS=linux-x11
|
env: DESCR=linux-bionic-gcc-x11 HINTS=linux-x11
|
||||||
dist: bionic
|
dist: bionic
|
||||||
@@ -42,7 +42,7 @@ matrix:
|
|||||||
- libx11-dev
|
- libx11-dev
|
||||||
- libxaw7-dev
|
- libxaw7-dev
|
||||||
- xfonts-utils
|
- xfonts-utils
|
||||||
script: "cd sys/unix/ && sh setup.sh hints/$HINTS && cd ../../ && make install"
|
script: "cd sys/unix/ && sh setup.sh hints/$HINTS && cd ../../ && make fetch-lua && make install"
|
||||||
- os: linux
|
- os: linux
|
||||||
env: DESCR=linux-xenial-gcc-minimal HINTS=linux-minimal
|
env: DESCR=linux-xenial-gcc-minimal HINTS=linux-minimal
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
@@ -67,8 +67,18 @@ matrix:
|
|||||||
sed -i '/^#define SHELL/d' include/unixconf.h
|
sed -i '/^#define SHELL/d' include/unixconf.h
|
||||||
sed -i '/^#define SUSPEND/d' include/unixconf.h
|
sed -i '/^#define SUSPEND/d' include/unixconf.h
|
||||||
sed -i 's/^#define TEXTCOLOR//' include/unixconf.h
|
sed -i 's/^#define TEXTCOLOR//' include/unixconf.h
|
||||||
make install
|
make fetch-lua && make install
|
||||||
cat dat/options
|
cat dat/options
|
||||||
|
- os: linux
|
||||||
|
env: DESCR=msdos-cross-on-linux HINTS=linux LUA_VERSION=5.3.5
|
||||||
|
compiler: gcc
|
||||||
|
script:
|
||||||
|
# - export
|
||||||
|
- cd sys/unix/ && sh setup.sh hints/$HINTS && cd ../../
|
||||||
|
- make fetch-lua
|
||||||
|
- cd lib/lua-$LUA_VERSION/src && make a && cd ../../..
|
||||||
|
- sh sys/msdos/msdos-cross-compile.sh
|
||||||
|
exclude:
|
||||||
- os: windows
|
- os: windows
|
||||||
env: DESCR=windows-visualstudio
|
env: DESCR=windows-visualstudio
|
||||||
language: shell
|
language: shell
|
||||||
@@ -84,16 +94,6 @@ matrix:
|
|||||||
- cd src
|
- cd src
|
||||||
- cp ../sys/winnt/Makefile.gcc ./Makefile
|
- cp ../sys/winnt/Makefile.gcc ./Makefile
|
||||||
- mingw32-make install
|
- mingw32-make install
|
||||||
- os: linux
|
|
||||||
env: DESCR=msdos-cross-on-linux HINTS=linux LUA_VERSION=5.3.5
|
|
||||||
compiler: gcc
|
|
||||||
script:
|
|
||||||
# - export
|
|
||||||
- cd sys/unix/ && sh setup.sh hints/$HINTS && cd ../../
|
|
||||||
- make fetch-lua
|
|
||||||
- cd lib/lua-$LUA_VERSION/src && make a && cd ../../..
|
|
||||||
- sh sys/msdos/msdos-cross-compile.sh
|
|
||||||
exclude:
|
|
||||||
# - os: osx
|
# - os: osx
|
||||||
# osx_image: xcode10.3
|
# osx_image: xcode10.3
|
||||||
# env: DESCR=osx-xcode10.3-x11 HINTS=macosx10.14 WANT_WIN_CURSES=1 WANT_WIN_X11=1 USE_XPM=1
|
# env: DESCR=osx-xcode10.3-x11 HINTS=macosx10.14 WANT_WIN_CURSES=1 WANT_WIN_X11=1 USE_XPM=1
|
||||||
|
|||||||
Reference in New Issue
Block a user