1
0
mirror of https://github.com/livingcomputermuseum/pdp7-unix.git synced 2026-04-20 01:33:50 +00:00

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

View File

@@ -1,3 +1,4 @@
language: c
sudo: false
script: make clean;make
script: make clean;make alt; make clean; make

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