Travis: Fixing minor errors through many commits
This commit is contained in:
parent
0bb07834c1
commit
967464906f
2 changed files with 6 additions and 6 deletions
|
@ -10,9 +10,9 @@ cache:
|
||||||
- $HOME/.stack
|
- $HOME/.stack
|
||||||
- $HOME/.agda
|
- $HOME/.agda
|
||||||
- $HOME/.local
|
- $HOME/.local
|
||||||
- $HOME/agda
|
- $HOME/agda-master
|
||||||
- $HOME/agda-stdlib-master
|
- $HOME/agda-stdlib-master
|
||||||
- $HOME/agda2html
|
- $HOME/agda2html-master
|
||||||
|
|
||||||
# Ensure necessary system libraries are present
|
# Ensure necessary system libraries are present
|
||||||
addons:
|
addons:
|
||||||
|
|
8
Makefile
8
Makefile
|
@ -36,13 +36,13 @@ endif
|
||||||
rmdir out/
|
rmdir out/
|
||||||
|
|
||||||
setup:\
|
setup:\
|
||||||
$(HOME)/agda/\
|
$(HOME)/agda-master/\
|
||||||
$(HOME)/agda-stdlib-master/\
|
$(HOME)/agda-stdlib-master/\
|
||||||
$(HOME)/agda2html/
|
$(HOME)/agda2html-master/
|
||||||
|
|
||||||
.phony: setup
|
.phony: setup
|
||||||
|
|
||||||
$(HOME)/agda/:
|
$(HOME)/agda-master/:
|
||||||
curl -L https://github.com/agda/agda/archive/master.zip -o $(HOME)/agda-master.zip
|
curl -L https://github.com/agda/agda/archive/master.zip -o $(HOME)/agda-master.zip
|
||||||
unzip -qq $(HOME)/agda-master.zip -d $(HOME)
|
unzip -qq $(HOME)/agda-master.zip -d $(HOME)
|
||||||
cd $(HOME)/agda-master;\
|
cd $(HOME)/agda-master;\
|
||||||
|
@ -55,7 +55,7 @@ $(HOME)/agda-stdlib-master/:
|
||||||
echo "standard-library" > $(HOME)/.agda/defaults
|
echo "standard-library" > $(HOME)/.agda/defaults
|
||||||
echo "$(HOME)/agda-stdlib-master/standard-library.agda-lib" > $(HOME)/.agda/libraries
|
echo "$(HOME)/agda-stdlib-master/standard-library.agda-lib" > $(HOME)/.agda/libraries
|
||||||
|
|
||||||
$(HOME)/agda2html/:
|
$(HOME)/agda2html-master/:
|
||||||
curl -L https://github.com/wenkokke/agda2html/archive/master.zip -o $(HOME)/agda2html-master.zip
|
curl -L https://github.com/wenkokke/agda2html/archive/master.zip -o $(HOME)/agda2html-master.zip
|
||||||
unzip -qq $(HOME)/agda2html-master.zip -d $(HOME)
|
unzip -qq $(HOME)/agda2html-master.zip -d $(HOME)
|
||||||
cd $(HOME)/agda2html-master;\
|
cd $(HOME)/agda2html-master;\
|
||||||
|
|
Loading…
Reference in a new issue