diff options
author | gnzlbg <gonzalobg88@gmail.com> | 2018-07-11 15:18:40 +0200 |
---|---|---|
committer | David Goldblatt <davidtgoldblatt@gmail.com> | 2018-07-17 17:55:50 -0700 |
commit | 6deed86deb48d3b432d972a139a413a9fb38283b (patch) | |
tree | 9e8090e18a5681f469e3896897114b6f3a2a9955 /scripts | |
parent | 0eb0641cac0c3031f84469953b5e75b380867ccb (diff) |
Test that .travis.yml has been produced by gen_travis.py on CI
This commits checks on Travis-CI that the current `.travis.yml` file
equals the output of the `gen_travis.py` script, and updated
the `.travis.yml` file accordingly.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/gen_travis.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/gen_travis.py b/scripts/gen_travis.py index 15708834..44732052 100755 --- a/scripts/gen_travis.py +++ b/scripts/gen_travis.py @@ -12,6 +12,7 @@ matrix: before_script: - autoconf + - scripts/gen_travis.py > travis_script && diff .travis.yml travis_script - ./configure ${COMPILER_FLAGS:+ \ CC="$CC $COMPILER_FLAGS" \ CXX="$CXX $COMPILER_FLAGS" } \ |