mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-26 19:23:26 -03:00
move remaining travis build steps into individual files
This commit is contained in:
parent
272306ea57
commit
506890b24d
4 changed files with 20 additions and 4 deletions
|
@ -49,9 +49,9 @@ jobs:
|
||||||
language: python
|
language: python
|
||||||
python: '3.6'
|
python: '3.6'
|
||||||
install:
|
install:
|
||||||
- travis_retry pip install flake8
|
- source .travis/lint_04_install.sh
|
||||||
before_script:
|
before_script:
|
||||||
- git fetch --unshallow
|
- source .travis/lint_05_before_script.sh
|
||||||
script:
|
script:
|
||||||
- source .travis/lint_06_script.sh
|
- source .travis/lint_06_script.sh
|
||||||
# ARM
|
# ARM
|
||||||
|
|
9
.travis/lint_04_install.sh
Executable file
9
.travis/lint_04_install.sh
Executable file
|
@ -0,0 +1,9 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
#
|
||||||
|
# Copyright (c) 2018 The Bitcoin Core developers
|
||||||
|
# Distributed under the MIT software license, see the accompanying
|
||||||
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
|
export LC_ALL=C
|
||||||
|
|
||||||
|
travis_retry pip install flake8
|
9
.travis/lint_05_before_script.sh
Executable file
9
.travis/lint_05_before_script.sh
Executable file
|
@ -0,0 +1,9 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
#
|
||||||
|
# Copyright (c) 2018 The Bitcoin Core developers
|
||||||
|
# Distributed under the MIT software license, see the accompanying
|
||||||
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
|
export LC_ALL=C
|
||||||
|
|
||||||
|
git fetch --unshallow
|
|
@ -3,8 +3,6 @@
|
||||||
# Copyright (c) 2018 The Bitcoin Core developers
|
# Copyright (c) 2018 The Bitcoin Core developers
|
||||||
# Distributed under the MIT software license, see the accompanying
|
# Distributed under the MIT software license, see the accompanying
|
||||||
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
#
|
|
||||||
# Check for new lines in diff that introduce trailing whitespace.
|
|
||||||
|
|
||||||
export LC_ALL=C
|
export LC_ALL=C
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue