ci: rename travis-build.sh and travis-install.sh scripts

* travis-build.sh: Rename to ci/run-build-and-tests.sh, all callers
updated.
* travis-install.sh: Rename to ci/install-dependencies.sh, all callers
updated.
This commit is contained in:
Дмитрий Левин 2018-03-13 13:19:02 +00:00
parent 3de1462ed8
commit 8c00b612e5
4 changed files with 7 additions and 7 deletions

View File

@ -1,7 +1,7 @@
image: "ubuntu:17.10"
before_script:
- ./travis-install.sh
- ci/install-dependencies.sh
variables:
GIT_DEPTH: "2147483647"
@ -10,28 +10,28 @@ variables:
gcc-x86_64:
stage: test
script: ./travis-build.sh
script: ci/run-build-and-tests.sh
variables:
CC: "gcc"
TARGET: "x86_64"
gcc-x86:
stage: test
script: ./travis-build.sh
script: ci/run-build-and-tests.sh
variables:
CC: "gcc"
TARGET: "x86"
clang-x86_64:
stage: test
script: ./travis-build.sh
script: ci/run-build-and-tests.sh
variables:
CC: "clang"
TARGET: "x86_64"
clang-x86:
stage: test
script: ./travis-build.sh
script: ci/run-build-and-tests.sh
variables:
CC: "clang"
TARGET: "x86"

View File

@ -2,9 +2,9 @@ language: c
dist: trusty
before_install: ./travis-install.sh
before_install: ci/install-dependencies.sh
script: ./travis-build.sh
script: ci/run-build-and-tests.sh
sudo: required