Skip to content

Commit 272306e

Browse files
committed
number .travis/ script according to build lifecycle and add README to explain
1 parent 519e273 commit 272306e

File tree

7 files changed

+13
-5
lines changed

7 files changed

+13
-5
lines changed

.travis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ env:
2929
- WINEDEBUG=fixme-all
3030
- DOCKER_PACKAGES="build-essential libtool autotools-dev automake pkg-config bsdmainutils curl git ca-certificates ccache"
3131
before_install:
32-
- source .travis/before_install.sh
32+
- source .travis/test_03_before_install.sh
3333
install:
34-
- source .travis/install.sh
34+
- source .travis/test_04_install.sh
3535
before_script:
36-
- source .travis/before_script.sh
36+
- source .travis/test_05_before_script.sh
3737
script:
38-
- source .travis/script.sh
38+
- source .travis/test_06_script.sh
3939
after_script:
4040
- echo $TRAVIS_COMMIT_RANGE
4141
- echo $TRAVIS_COMMIT_LOG
@@ -53,7 +53,7 @@ jobs:
5353
before_script:
5454
- git fetch --unshallow
5555
script:
56-
- source .travis/lint.sh
56+
- source .travis/lint_06_script.sh
5757
# ARM
5858
- stage: test
5959
env: >-

.travis/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
## travis build scripts
2+
3+
The `.travis` directory contains scripts for each build step in each build stage.
4+
Currently the travis build defines two stages `lint` and `test`. Each stage has
5+
it's own [lifecycle](https://docs.travis-ci.com/user/customizing-the-build/#the-build-lifecycle).
6+
Every script in here is named and numbered according to which stage and lifecycle
7+
step it belongs to.
8+
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)