Browse Source

move ci scripts to .ci/

Steffen Jaeckel 8 years ago
parent
commit
b070672f59
10 changed files with 18 additions and 18 deletions
  1. 0 0
      .ci/build.sh
  2. 0 0
      .ci/check_source.sh
  3. 0 0
      .ci/coverage.sh
  4. 0 0
      .ci/coverage_more.sh
  5. 0 0
      .ci/meta_builds.sh
  6. 0 0
      .ci/printinfo.sh
  7. 0 0
      .ci/run.sh
  8. 0 0
      .ci/testbuild.sh
  9. 0 0
      .ci/valgrind.sh
  10. 18 18
      .travis.yml

+ 0 - 0
build.sh → .ci/build.sh


+ 0 - 0
check_source.sh → .ci/check_source.sh


+ 0 - 0
coverage.sh → .ci/coverage.sh


+ 0 - 0
coverage_more.sh → .ci/coverage_more.sh


+ 0 - 0
meta_builds.sh → .ci/meta_builds.sh


+ 0 - 0
printinfo.sh → .ci/printinfo.sh


+ 0 - 0
run.sh → .ci/run.sh


+ 0 - 0
testbuild.sh → .ci/testbuild.sh


+ 0 - 0
valgrind.sh → .ci/valgrind.sh


+ 18 - 18
.travis.yml

@@ -38,75 +38,75 @@ script:
   - bash "${BUILDSCRIPT}" "${BUILDNAME}" "${BUILDOPTIONS}" "makefile.shared V=1" "-DUSE_TFM -DTFM_DESC" "-ltfm"
 env:
   - |
-    BUILDSCRIPT="meta_builds.sh"
+    BUILDSCRIPT=".ci/meta_builds.sh"
     BUILDNAME="META_BUILS"
     BUILDOPTIONS="-DGMP_DESC"
   - |
-    BUILDSCRIPT="valgrind.sh"
+    BUILDSCRIPT=".ci/valgrind.sh"
     BUILDNAME="VALGRIND"
     BUILDOPTIONS=" "
   - |
-    BUILDSCRIPT="run.sh"
+    BUILDSCRIPT=".ci/run.sh"
     BUILDNAME="STOCK"
     BUILDOPTIONS=" "
   - |
-    BUILDSCRIPT="run.sh"
+    BUILDSCRIPT=".ci/run.sh"
     BUILDNAME="EASY"
     BUILDOPTIONS="-DLTC_EASY"
   - |
-    BUILDSCRIPT="run.sh"
+    BUILDSCRIPT=".ci/run.sh"
     BUILDNAME="SMALL"
     BUILDOPTIONS="-DLTC_SMALL_CODE"
   - |
-    BUILDSCRIPT="run.sh"
+    BUILDSCRIPT=".ci/run.sh"
     BUILDNAME="NOTABLES"
     BUILDOPTIONS="-DLTC_NO_TABLES"
   - |
-    BUILDSCRIPT="run.sh"
+    BUILDSCRIPT=".ci/run.sh"
     BUILDNAME="SMALL+NOTABLES"
     BUILDOPTIONS="-DLTC_SMALL_CODE -DLTC_NO_TABLES"
   - |
-    BUILDSCRIPT="run.sh"
+    BUILDSCRIPT=".ci/run.sh"
     BUILDNAME="CLEANSTACK"
     BUILDOPTIONS="-DLTC_CLEAN_STACK"
   - |
-    BUILDSCRIPT="run.sh"
+    BUILDSCRIPT=".ci/run.sh"
     BUILDNAME="CLEANSTACK+SMALL"
     BUILDOPTIONS="-DLTC_SMALL_CODE -DLTC_CLEAN_STACK"
   - |
-    BUILDSCRIPT="run.sh"
+    BUILDSCRIPT=".ci/run.sh"
     BUILDNAME="CLEANSTACK+NOTABLES"
     BUILDOPTIONS="-DLTC_NO_TABLES -DLTC_CLEAN_STACK"
   - |
-    BUILDSCRIPT="run.sh"
+    BUILDSCRIPT=".ci/run.sh"
     BUILDNAME="CLEANSTACK+NOTABLES+SMALL"
     BUILDOPTIONS="-DLTC_NO_TABLES -DLTC_CLEAN_STACK -DLTC_SMALL_CODE"
   - |
-    BUILDSCRIPT="run.sh"
+    BUILDSCRIPT=".ci/run.sh"
     BUILDNAME="NO_FAST"
     BUILDOPTIONS="-DLTC_NO_FAST"
   - |
-    BUILDSCRIPT="run.sh"
+    BUILDSCRIPT=".ci/run.sh"
     BUILDNAME="NO_FAST+NOTABLES"
     BUILDOPTIONS="-DLTC_NO_FAST -DLTC_NO_TABLES"
   - |
-    BUILDSCRIPT="run.sh"
+    BUILDSCRIPT=".ci/run.sh"
     BUILDNAME="NO_ASM"
     BUILDOPTIONS="-DLTC_NO_ASM"
   - |
-    BUILDSCRIPT="run.sh"
+    BUILDSCRIPT=".ci/run.sh"
     BUILDNAME="NO_TIMING_RESISTANCE"
     BUILDOPTIONS="-DLTC_NO_ECC_TIMING_RESISTANT -DLTC_NO_RSA_BLINDING"
   - |
-    BUILDSCRIPT="run.sh"
+    BUILDSCRIPT=".ci/run.sh"
     BUILDNAME="CLEANSTACK+NOTABLES+SMALL+NO_ASM+NO_TIMING_RESISTANCE"
     BUILDOPTIONS="-DLTC_CLEAN_STACK -DLTC_NO_TABLES -DLTC_SMALL_CODE -DLTC_NO_ECC_TIMING_RESISTANT -DLTC_NO_RSA_BLINDING"
   - |
-    BUILDSCRIPT="run.sh"
+    BUILDSCRIPT=".ci/run.sh"
     BUILDNAME="PTHREAD"
     BUILDOPTIONS="-DLTC_PTHREAD"
   - |
-    BUILDSCRIPT="run.sh"
+    BUILDSCRIPT=".ci/run.sh"
     BUILDNAME="CLEANSTACK+NOTABLES+SMALL+NO_ASM+NO_TIMING_RESISTANCE+PTHREAD"
     BUILDOPTIONS="-DLTC_CLEAN_STACK -DLTC_NO_TABLES -DLTC_SMALL_CODE -DLTC_NO_ECC_TIMING_RESISTANT -DLTC_NO_RSA_BLINDING -DLTC_PTHREAD"