mirror of
https://github.com/DaveGamble/cJSON.git
synced 2023-08-10 21:13:26 +03:00
da8c48668d
287e076 Post release 774da10 Merge pull request #296 from jlindgren90/master 629b86d Merge unity_setup.h into unity.h. 0914d80 Merge pull request #308 from codehearts/patch-1 5ee55fe Fix missing TEST_ASSERT_EACH_EQUAL_HEX_MESSAGE 38c387b Merge pull request #304 from VLambret/master 17d4ea9 Color test results using ANSI escape codes 031b1ba Merge pull request #300 from jsalling/bugfix/greater-than df78aad Make weak symbol usage more portable: a7e8797 Fix link errors with MinGW. 94a3008 Update continuous integration to build 32-bit Unity b119919 Add 64-bit comparison asserts 91bcbe1 Add 'greater/less or equal to' asserts on integers 8caade7 Fix bug in greater/less than asserts on unsigned int 1381a1a Update documentation. 2593c31 Allow suiteSetUp() and suiteTearDown() to be provided as normal C functions. 60def10 Update configuration docs git-subtree-dir: tests/unity git-subtree-split: 287e076962ec711cd2bdf08364a8df9ce51e106b
30 lines
852 B
YAML
30 lines
852 B
YAML
language: c
|
|
|
|
matrix:
|
|
include:
|
|
- os: osx
|
|
compiler: clang
|
|
osx_image: xcode7.3
|
|
- os: linux
|
|
dist: trusty
|
|
compiler: gcc
|
|
|
|
before_install:
|
|
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then rvm install 2.1 && rvm use 2.1 && ruby -v; fi
|
|
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then sudo apt-get install --assume-yes --quiet gcc-multilib; fi
|
|
install:
|
|
- gem install rspec
|
|
- gem install rubocop
|
|
script:
|
|
- cd test && rake ci
|
|
- make -s
|
|
- make -s DEBUG=-m32 #32-bit architecture with 64-bit support
|
|
- make -s DEBUG=-m32 UNITY_SUPPORT_64= #32-bit build without 64-bit types
|
|
- make -s UNITY_INCLUDE_DOUBLE= # without double
|
|
- cd ../extras/fixture/test && rake ci
|
|
- make -s default noStdlibMalloc
|
|
- make -s C89
|
|
- cd ../../../examples/example_1 && make -s ci
|
|
- cd ../example_2 && make -s ci
|
|
- cd ../example_3 && rake
|