Do git management in ci script

This commit is contained in:
Jeremy Soller 2018-06-09 19:31:59 -06:00
parent bd76eabd72
commit 1d9f58ac87

View file

@ -1,12 +1,14 @@
variables: variables:
GIT_STRATEGY: fetch GIT_STRATEGY: none
GIT_SUBMODULE_STRATEGY: recursive GIT_SUBMODULE_STRATEGY: none
before_script: before_script:
- | - |
apt-get update -qq && apt-get update -qq &&
apt-get install -qq \ apt-get install -qq \
autopoint \ autopoint \
autoconf \
automake \
bison \ bison \
build-essential \ build-essential \
clang \ clang \
@ -34,6 +36,8 @@ before_script:
build: build:
script: script:
- | - |
git pull &&
git submodule update --init --recursive &&
source "$HOME/.cargo/env" && source "$HOME/.cargo/env" &&
cargo install cargo-config xargo && cargo install cargo-config xargo &&
make ci make ci