Ver código fonte

move deploy logic into main script

pull/454/head
Dave Machado 6 anos atrás
pai
commit
f5b506165e
2 arquivos alterados com 7 adições e 4 exclusões
  1. +1
    -4
      .travis.yml
  2. +6
    -0
      build/main.sh

+ 1
- 4
.travis.yml Ver arquivo

@@ -9,7 +9,4 @@ before_script:
- cd build
script:
- ./main.sh
after_success:
- ./build.sh
- ./deploy.sh

+ 6
- 0
build/main.sh Ver arquivo

@@ -25,6 +25,12 @@ if [[ $? != 0 ]]; then
exit 1
else
echo "format validation passed!"
build.sh && deploy.sh
if [[ $? != 0 ]]; then
echo "JSON build and deploy failed!"
else
echo "JSON build and deploy success!"
fi
fi

echo "running link validation..."


Carregando…
Cancelar
Salvar