Feature/enable mingw build (#62)
* enabled mingw win32 build in travis Co-authored-by: Steve Karg <skarg@users.sourceforge.net>
This commit is contained in:
+14
-5
@@ -3,11 +3,12 @@ language: c
|
|||||||
dist: xenial
|
dist: xenial
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- sudo apt-get update
|
- sudo apt-get update -qq
|
||||||
- sudo apt-get -y install build-essential
|
- sudo apt-get install -qq build-essential
|
||||||
- sudo apt-get -y install gcc-arm-none-eabi
|
- sudo apt-get install -qq gcc-arm-none-eabi
|
||||||
- sudo apt-get -y install libnewlib-arm-none-eabi
|
- sudo apt-get install -qq libnewlib-arm-none-eabi
|
||||||
- sudo apt-get -y install gcc-avr avr-libc binutils-avr
|
- sudo apt-get install -qq gcc-avr avr-libc binutils-avr
|
||||||
|
- sudo apt-get install -qq mingw-w64
|
||||||
|
|
||||||
compiler:
|
compiler:
|
||||||
- gcc
|
- gcc
|
||||||
@@ -19,6 +20,14 @@ jobs:
|
|||||||
os: linux
|
os: linux
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
script: make clean all
|
script: make clean all
|
||||||
|
- stage: demos-win32
|
||||||
|
os: linux
|
||||||
|
before_script:
|
||||||
|
- export CC=i686-w64-mingw32-gcc
|
||||||
|
- export LD=i686-w64-mingw32-ld
|
||||||
|
- i686-w64-mingw32-gcc --version
|
||||||
|
script:
|
||||||
|
- make win32
|
||||||
- stage: demos-build-cmake
|
- stage: demos-build-cmake
|
||||||
os: linux
|
os: linux
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
|
|||||||
Reference in New Issue
Block a user