updated travis to prevent breaking the alt build again

This commit is contained in:
Tom Everett
2019-10-27 19:28:12 -04:00
parent 72f187357b
commit c51d8ce87e
2 changed files with 7 additions and 3 deletions
+2 -1
View File
@@ -1,3 +1,4 @@
language: c
sudo: false
script: make clean;make
script: make clean;make alt; make clean; make
+5 -2
View File
@@ -9,8 +9,11 @@ buildit:
run: buildit
cd build && $(MAKE) run
altrun: buildit
cd build && $(MAKE) alt && $(MAKE) altrun
alt:
cd build && $(MAKE) alt
altrun: alt
cd build && $(MAKE) altrun
clean:
cd build && $(MAKE) clean