number .travis/ script according to build lifecycle and add README to explain
This commit is contained in:
parent
519e2739cf
commit
272306ea57
7 changed files with 13 additions and 5 deletions
10
.travis.yml
10
.travis.yml
|
@ -29,13 +29,13 @@ env:
|
||||||
- WINEDEBUG=fixme-all
|
- WINEDEBUG=fixme-all
|
||||||
- DOCKER_PACKAGES="build-essential libtool autotools-dev automake pkg-config bsdmainutils curl git ca-certificates ccache"
|
- DOCKER_PACKAGES="build-essential libtool autotools-dev automake pkg-config bsdmainutils curl git ca-certificates ccache"
|
||||||
before_install:
|
before_install:
|
||||||
- source .travis/before_install.sh
|
- source .travis/test_03_before_install.sh
|
||||||
install:
|
install:
|
||||||
- source .travis/install.sh
|
- source .travis/test_04_install.sh
|
||||||
before_script:
|
before_script:
|
||||||
- source .travis/before_script.sh
|
- source .travis/test_05_before_script.sh
|
||||||
script:
|
script:
|
||||||
- source .travis/script.sh
|
- source .travis/test_06_script.sh
|
||||||
after_script:
|
after_script:
|
||||||
- echo $TRAVIS_COMMIT_RANGE
|
- echo $TRAVIS_COMMIT_RANGE
|
||||||
- echo $TRAVIS_COMMIT_LOG
|
- echo $TRAVIS_COMMIT_LOG
|
||||||
|
@ -53,7 +53,7 @@ jobs:
|
||||||
before_script:
|
before_script:
|
||||||
- git fetch --unshallow
|
- git fetch --unshallow
|
||||||
script:
|
script:
|
||||||
- source .travis/lint.sh
|
- source .travis/lint_06_script.sh
|
||||||
# ARM
|
# ARM
|
||||||
- stage: test
|
- stage: test
|
||||||
env: >-
|
env: >-
|
||||||
|
|
8
.travis/README.md
Normal file
8
.travis/README.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
## travis build scripts
|
||||||
|
|
||||||
|
The `.travis` directory contains scripts for each build step in each build stage.
|
||||||
|
Currently the travis build defines two stages `lint` and `test`. Each stage has
|
||||||
|
it's own [lifecycle](https://docs.travis-ci.com/user/customizing-the-build/#the-build-lifecycle).
|
||||||
|
Every script in here is named and numbered according to which stage and lifecycle
|
||||||
|
step it belongs to.
|
||||||
|
|
Loading…
Reference in a new issue