Este site funciona melhor com JavaScript.
Página inicial
Explorar
Ajuda
Acessar
binhong
/
TicketingSystem
espelhamento de
https://github.com/binhonglee/TicketingSystem
Observar
1
Favorito
0
Fork
0
Código
Issues
0
Versões
0
Wiki
Atividade
Ver código fonte
Merge install and uninstall scripts for mac and linux
Fixing-travis-yml
BinHong Lee
7 anos atrás
pai
edb09e5574
commit
7ebe6d0516
5 arquivos alterados
com
16 adições
e
18 exclusões
Visão dividida
Opções de diferenças
Mostrar estatísticas
Baixar arquivo de patch
Baixar arquivo de diferenças
+6
-4
.travis.yml
+6
-2
install.sh
+0
-5
mac_install.sh
+0
-6
mac_uninstall.sh
+4
-1
uninstall.sh
+ 6
- 4
.travis.yml
Ver arquivo
@@ -19,10 +19,12 @@ matrix:
- MATRIX_EVAL="brew install gcc && CC=gcc-6 && CXX=g++-6"
before_install:
- sudo apt-get update
- eval "${MATRIX_EVAL}"
install: ./install.sh
script: ant test
after_script: ./uninstall.sh
install:
- ./install.sh
script:
- ant test
after_script:
- ./uninstall.sh
after_success:
- bash <(curl -s https://codecov.io/bash)
+ 6
- 2
install.sh
Ver arquivo
@@ -1,5 +1,9 @@
sudo apt-get update
sudo apt-get install libjsoncpp-dev
if [ $kernel == "Darwin" ]; then
brew install jsoncpp
else
sudo apt-get update
sudo apt-get install libjsoncpp-dev
cp lib/anttasks.jar ~
pushd ~
jar xf anttasks.jar
+ 0
- 5
mac_install.sh
Ver arquivo
@@ -1,5 +0,0 @@
brew install jsoncpp
cp lib/anttasks.jar ~
pushd ~
jar xf anttasks.jar
pushd -0
+ 0
- 6
mac_uninstall.sh
Ver arquivo
@@ -1,6 +0,0 @@
brew uninstall jsoncpp
cd ../
echo "Deleting project files"
rm -rf TicketingSystem
echo "Removing additional installed library"
rm -rf ~/anttasks.jar
+ 4
- 1
uninstall.sh
Ver arquivo
@@ -1,4 +1,7 @@
sudo apt-get remove --purge libjsoncpp-dev
if [ $kernel == "Darwin" ]; then
sudo apt-get remove --purge libjsoncpp-dev
else
brew uninstall jsoncpp
cd ../
echo "Deleting project files"
rm -rf TicketingSystem
Escrever
Pré-visualização
Carregando…
Cancelar
Salvar