Skip to content

Commit b070672

Browse files
committed
move ci scripts to .ci/
1 parent c5caac5 commit b070672

10 files changed

+18
-18
lines changed

build.sh renamed to .ci/build.sh

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

run.sh renamed to .ci/run.sh

File renamed without changes.
File renamed without changes.
File renamed without changes.

.travis.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -38,75 +38,75 @@ script:
3838
- bash "${BUILDSCRIPT}" "${BUILDNAME}" "${BUILDOPTIONS}" "makefile.shared V=1" "-DUSE_TFM -DTFM_DESC" "-ltfm"
3939
env:
4040
- |
41-
BUILDSCRIPT="meta_builds.sh"
41+
BUILDSCRIPT=".ci/meta_builds.sh"
4242
BUILDNAME="META_BUILS"
4343
BUILDOPTIONS="-DGMP_DESC"
4444
- |
45-
BUILDSCRIPT="valgrind.sh"
45+
BUILDSCRIPT=".ci/valgrind.sh"
4646
BUILDNAME="VALGRIND"
4747
BUILDOPTIONS=" "
4848
- |
49-
BUILDSCRIPT="run.sh"
49+
BUILDSCRIPT=".ci/run.sh"
5050
BUILDNAME="STOCK"
5151
BUILDOPTIONS=" "
5252
- |
53-
BUILDSCRIPT="run.sh"
53+
BUILDSCRIPT=".ci/run.sh"
5454
BUILDNAME="EASY"
5555
BUILDOPTIONS="-DLTC_EASY"
5656
- |
57-
BUILDSCRIPT="run.sh"
57+
BUILDSCRIPT=".ci/run.sh"
5858
BUILDNAME="SMALL"
5959
BUILDOPTIONS="-DLTC_SMALL_CODE"
6060
- |
61-
BUILDSCRIPT="run.sh"
61+
BUILDSCRIPT=".ci/run.sh"
6262
BUILDNAME="NOTABLES"
6363
BUILDOPTIONS="-DLTC_NO_TABLES"
6464
- |
65-
BUILDSCRIPT="run.sh"
65+
BUILDSCRIPT=".ci/run.sh"
6666
BUILDNAME="SMALL+NOTABLES"
6767
BUILDOPTIONS="-DLTC_SMALL_CODE -DLTC_NO_TABLES"
6868
- |
69-
BUILDSCRIPT="run.sh"
69+
BUILDSCRIPT=".ci/run.sh"
7070
BUILDNAME="CLEANSTACK"
7171
BUILDOPTIONS="-DLTC_CLEAN_STACK"
7272
- |
73-
BUILDSCRIPT="run.sh"
73+
BUILDSCRIPT=".ci/run.sh"
7474
BUILDNAME="CLEANSTACK+SMALL"
7575
BUILDOPTIONS="-DLTC_SMALL_CODE -DLTC_CLEAN_STACK"
7676
- |
77-
BUILDSCRIPT="run.sh"
77+
BUILDSCRIPT=".ci/run.sh"
7878
BUILDNAME="CLEANSTACK+NOTABLES"
7979
BUILDOPTIONS="-DLTC_NO_TABLES -DLTC_CLEAN_STACK"
8080
- |
81-
BUILDSCRIPT="run.sh"
81+
BUILDSCRIPT=".ci/run.sh"
8282
BUILDNAME="CLEANSTACK+NOTABLES+SMALL"
8383
BUILDOPTIONS="-DLTC_NO_TABLES -DLTC_CLEAN_STACK -DLTC_SMALL_CODE"
8484
- |
85-
BUILDSCRIPT="run.sh"
85+
BUILDSCRIPT=".ci/run.sh"
8686
BUILDNAME="NO_FAST"
8787
BUILDOPTIONS="-DLTC_NO_FAST"
8888
- |
89-
BUILDSCRIPT="run.sh"
89+
BUILDSCRIPT=".ci/run.sh"
9090
BUILDNAME="NO_FAST+NOTABLES"
9191
BUILDOPTIONS="-DLTC_NO_FAST -DLTC_NO_TABLES"
9292
- |
93-
BUILDSCRIPT="run.sh"
93+
BUILDSCRIPT=".ci/run.sh"
9494
BUILDNAME="NO_ASM"
9595
BUILDOPTIONS="-DLTC_NO_ASM"
9696
- |
97-
BUILDSCRIPT="run.sh"
97+
BUILDSCRIPT=".ci/run.sh"
9898
BUILDNAME="NO_TIMING_RESISTANCE"
9999
BUILDOPTIONS="-DLTC_NO_ECC_TIMING_RESISTANT -DLTC_NO_RSA_BLINDING"
100100
- |
101-
BUILDSCRIPT="run.sh"
101+
BUILDSCRIPT=".ci/run.sh"
102102
BUILDNAME="CLEANSTACK+NOTABLES+SMALL+NO_ASM+NO_TIMING_RESISTANCE"
103103
BUILDOPTIONS="-DLTC_CLEAN_STACK -DLTC_NO_TABLES -DLTC_SMALL_CODE -DLTC_NO_ECC_TIMING_RESISTANT -DLTC_NO_RSA_BLINDING"
104104
- |
105-
BUILDSCRIPT="run.sh"
105+
BUILDSCRIPT=".ci/run.sh"
106106
BUILDNAME="PTHREAD"
107107
BUILDOPTIONS="-DLTC_PTHREAD"
108108
- |
109-
BUILDSCRIPT="run.sh"
109+
BUILDSCRIPT=".ci/run.sh"
110110
BUILDNAME="CLEANSTACK+NOTABLES+SMALL+NO_ASM+NO_TIMING_RESISTANCE+PTHREAD"
111111
BUILDOPTIONS="-DLTC_CLEAN_STACK -DLTC_NO_TABLES -DLTC_SMALL_CODE -DLTC_NO_ECC_TIMING_RESISTANT -DLTC_NO_RSA_BLINDING -DLTC_PTHREAD"
112112

0 commit comments

Comments
 (0)