1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-26 05:29:30 +00:00

Made use of Travis CI's Windows support.

At least for now there seems to be no point in trying to build the libraries (and run the tests) on Windows. Rather we only want to check that the MSVC solution is still valid.
This commit is contained in:
Oliver Schmidt 2020-08-02 15:50:17 +02:00
parent adda28f5c5
commit ce19d7b84f

View File

@ -1,16 +1,24 @@
language: language: c
- c
install: jobs:
- sudo apt-get update include:
- sudo apt-get install linuxdoc-tools linuxdoc-tools-info binutils-mingw-w64-i686 gcc-mingw-w64-i686 sshpass
script: - os: linux
- make bin USER_CFLAGS=-Werror install:
- make lib QUIET=1 - sudo apt-get update
- make test QUIET=1 - sudo apt-get install linuxdoc-tools linuxdoc-tools-info binutils-mingw-w64-i686 gcc-mingw-w64-i686 sshpass
- make samples script:
- make -C src clean - make bin USER_CFLAGS=-Werror
- make bin USER_CFLAGS=-Werror CROSS_COMPILE=i686-w64-mingw32- - make lib QUIET=1
- make -C samples clean - make test QUIET=1
- make doc zip - make samples
after_success: - make -C src clean
- make -f Makefile.travis - make bin USER_CFLAGS=-Werror CROSS_COMPILE=i686-w64-mingw32-
- make -C samples clean
- make doc zip
after_success:
- make -f Makefile.travis
- os: windows
script:
- MSBuild.exe scr/cc65.sln