mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2026-08-22 02:59:57 +00:00
Merge branch 'master' of https://github.com/ThrowTheSwitch/Unity
This commit is contained in:
+1
-3
@@ -2,7 +2,5 @@ language: ruby
|
|||||||
rvm:
|
rvm:
|
||||||
- "1.9.3"
|
- "1.9.3"
|
||||||
- "2.0.0"
|
- "2.0.0"
|
||||||
install:
|
|
||||||
- bundle install
|
|
||||||
script:
|
script:
|
||||||
- bundle exec rake ci
|
- rake ci
|
||||||
|
|||||||
@@ -1,4 +0,0 @@
|
|||||||
source "http://rubygems.org/"
|
|
||||||
|
|
||||||
gem "rake"
|
|
||||||
gem "test-unit", "2.4.3"
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
GEM
|
|
||||||
remote: http://rubygems.org/
|
|
||||||
specs:
|
|
||||||
rake (10.3.2)
|
|
||||||
test-unit (2.4.3)
|
|
||||||
|
|
||||||
PLATFORMS
|
|
||||||
ruby
|
|
||||||
|
|
||||||
DEPENDENCIES
|
|
||||||
rake
|
|
||||||
test-unit (= 2.4.3)
|
|
||||||
@@ -24,8 +24,13 @@ task :prepare_for_tests => TEMP_DIRS
|
|||||||
|
|
||||||
include RakefileHelpers
|
include RakefileHelpers
|
||||||
|
|
||||||
# Load default configuration, for now
|
# Load proper GCC as defult configuration
|
||||||
DEFAULT_CONFIG_FILE = 'gcc_32.yml'
|
if 1.size == 8 # 8 bytes => 64-bits
|
||||||
|
DEFAULT_CONFIG_FILE = 'gcc_64.yml'
|
||||||
|
else # Assume 32-bit otherwise
|
||||||
|
DEFAULT_CONFIG_FILE = 'gcc_32.yml'
|
||||||
|
end
|
||||||
|
|
||||||
configure_toolchain(DEFAULT_CONFIG_FILE)
|
configure_toolchain(DEFAULT_CONFIG_FILE)
|
||||||
|
|
||||||
desc "Test unity with its own unit tests"
|
desc "Test unity with its own unit tests"
|
||||||
Reference in New Issue
Block a user