Skip to content

Commit

Permalink
Update .travis.yml
Browse files Browse the repository at this point in the history
skip broken directories

Change-Id: I1a1e7b5c6e56475a7831e5b27fa2ee9247e6c928
  • Loading branch information
cooljeanius committed Oct 1, 2023
1 parent 3a1c0c6 commit 55c75f7
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,12 @@ script:
- make all-intl
- make all-electric-fence
- make all-etc
- make all-libbacktrace
- make all-libdecnumber
- make all-mmalloc
- make all-readline
- for dir in libtool_gnu sim utils tcl expect dejagnu itcl tk libgui; do if test -e ${dir}/Makefile; then make -C ${dir}; elif test -d dir; then ls ${dir}/Makefile*; else echo "skipping ${dir}"; fi; done
- make check-cgen
- for dir in libtool_gnu sim utils tcl expect dejagnu itcl tk libgui; do if test -e ${dir}/configure; then make configure-${dir}; elif test -d ${dir}; then ls ${dir}/configure*; else echo "skipping configuring in ${dir}"; fi; done
- for dir in libtool_gnu sim utils tcl expect dejagnu itcl tk libgui; do if test -e ${dir}/Makefile; then make -C ${dir}; elif test -d ${dir}; then ls ${dir}/Makefile*; else echo "skipping ${dir}"; fi; done
- make check-libiberty
- make check-intl
- make check-mmalloc
- make check-readline
- for dir in libtool_gnu sim utils tcl expect dejagnu itcl tk libgui; do if test -e ${dir}/Makefile; then make check-${dir} V=0 RUNTESTFLAGS="-v"; elif test -d dir; then ls ${dir}/Makefile*; else echo "skipping ${dir}"; fi; done
- for dir in libtool_gnu sim utils tcl expect dejagnu itcl tk libgui; do if test -e ${dir}/Makefile; then make check-${dir} V=0 RUNTESTFLAGS="-v"; elif test -d ${dir}; then ls ${dir}/Makefile*; else echo "skipping testing ${dir}"; fi; done

compiler:
- clang
Expand Down

0 comments on commit 55c75f7

Please sign in to comment.