diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-05-08 18:56:32 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-05-08 19:04:30 -0700 |
commit | 1baa04dbd4c77d18b906fd185c762f613b36baa0 (patch) | |
tree | ca9dd89880ee34a0828fe22b8ed79532179035f9 /test_all_layers | |
parent | 0c9dacf306cecb1734b9e1704f4f6e4b3821ff01 (diff) | |
download | mu-1baa04dbd4c77d18b906fd185c762f613b36baa0.tar.gz |
2941 - split Travis CI into multiple jobs
It easily exceeded the 50-minute timeout.
Diffstat (limited to 'test_all_layers')
-rwxr-xr-x | test_all_layers | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/test_all_layers b/test_all_layers deleted file mode 100755 index f7551aea..00000000 --- a/test_all_layers +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh - -for f in [0-9]* -do - if [ "$f" \< "$1" ]; then continue; fi - echo "=== $f" - ./build_and_test_until $f || exit 1 -done - -echo "=== chessboard" -./mu test chessboard.mu || exit 1 - -for f in edit/[0-9]* -do - echo "=== edit: until $f" - ./mu test `echo edit/[0-9]* |perl -pwe "s,$f.*,$f,"` || exit 1 -done |