mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
73f1c0e11d
The GitHub token used for GitHub Pages deployment was revoked (see https://blog.travis-ci.com/2017-05-08-security-advisory) so I took the opportunity to make use of the "new" repository settings feature instead of fiddling with variable encryption again.
15 lines
394 B
YAML
15 lines
394 B
YAML
language:
|
|
- c
|
|
install:
|
|
- sudo apt-get update
|
|
- sudo apt-get install linuxdoc-tools linuxdoc-tools-info binutils-mingw-w64-i686 gcc-mingw-w64-i686 sshpass
|
|
script:
|
|
- make bin USER_CFLAGS=-Werror
|
|
- make lib QUIET=1
|
|
- make -C test QUIET=1
|
|
- make -C src clean
|
|
- make bin USER_CFLAGS=-Werror CROSS_COMPILE=i686-w64-mingw32-
|
|
- make doc zip
|
|
after_success:
|
|
- make -f Makefile.travis
|