diff options
author | Brandon West <brawest@gmail.com> | 2014-06-14 10:47:57 -0600 |
---|---|---|
committer | Brandon West <brawest@gmail.com> | 2014-06-14 10:47:57 -0600 |
commit | cd4bd789ea6c0edfef8958319012194470dcd042 (patch) | |
tree | 305a83ff1fa9323237df363ae102ad4c202dba15 /SendGrid | |
parent | 4f493cf1871b2ccfa1aebd5d43894d4ddbbbd418 (diff) | |
download | sendgrid-csharp-cd4bd789ea6c0edfef8958319012194470dcd042.zip sendgrid-csharp-cd4bd789ea6c0edfef8958319012194470dcd042.tar.gz sendgrid-csharp-cd4bd789ea6c0edfef8958319012194470dcd042.tar.bz2 |
fix dir structure
Diffstat (limited to 'SendGrid')
-rw-r--r-- | SendGrid/.ci/tests.sh | 13 | ||||
-rw-r--r-- | SendGrid/.travis.yml | 16 |
2 files changed, 0 insertions, 29 deletions
diff --git a/SendGrid/.ci/tests.sh b/SendGrid/.ci/tests.sh deleted file mode 100644 index 62e15d8..0000000 --- a/SendGrid/.ci/tests.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -x - -mono --runtime=v4.0 .nuget/NuGet.exe install NUnit.Runners -Version 2.6.1 -o packages - -runTest(){ - mono --runtime=v4.0 packages/NUnit.Runners.2.6.1/tools/nunit-console.exe -noxml -nodots -labels -stoponerror $@ - if [ $? -ne 0 ] - then - exit 1 - fi -} - -exit $? diff --git a/SendGrid/.travis.yml b/SendGrid/.travis.yml deleted file mode 100644 index a81853a..0000000 --- a/SendGrid/.travis.yml +++ /dev/null @@ -1,16 +0,0 @@ -language: objective-c - -env: - global: - - EnableNuGetPackageRestore=true - matrix: - - MONO_VERSION="3.4.0" - -before_install: - - wget "http://download.xamarin.com/MonoFrameworkMDK/Macx86/MonoFramework-MDK-${MONO_VERSION}.macos10.xamarin.x86.pkg" - - sudo installer -pkg "MonoFramework-MDK-${MONO_VERSION}.macos10.xamarin.x86.pkg" -target / - -script: - - xbuild /p:Configuration=BuildNet40;build=true - - .ci/nunit.sh Tests/bin/BuildNet40/Tests.dll - |