Explorar el Código

Build steps moved to script.

main
offa hace 7 años
padre
commit
bada7506a3
Se han modificado 2 ficheros con 13 adiciones y 7 borrados
  1. +1
    -7
      .travis.yml
  2. +12
    -0
      script/ci_build.sh

+ 1
- 7
.travis.yml Ver fichero

@@ -52,11 +52,5 @@ matrix:
sources: *sources

script:
- if [[ "$CXX" == clang* ]]; then export CXXFLAGS="-stdlib=libc++"; fi
- mkdir build && cd build
- cmake ..
- make
- make unittest


- script/ci_build.sh


+ 12
- 0
script/ci_build.sh Ver fichero

@@ -0,0 +1,12 @@
#!/bin/bash

if [[ "$CXX" == clang* ]]; then
export CXXFLAGS="-stdlib=libc++"
fi

mkdir build && cd build

cmake ..
make
make unittest


Cargando…
Cancelar
Guardar