Move scripts from .travis to .ci because they're also used by GitHub Actions

This commit is contained in:
Hugo 2020-01-08 15:41:48 +02:00
parent 5e9336af4c
commit 428b06365e
8 changed files with 12 additions and 12 deletions

View File

@ -50,7 +50,7 @@ jobs:
pip install wheel
sudo apt-get install -qq ruby-dev
PATH="$PATH:~/.local/bin"
.travis/after_success.sh
.ci/after_success.sh
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}

View File

@ -36,7 +36,7 @@ jobs:
with:
path: ~/.cache/pip
key:
${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('**/.travis/*.sh') }}
${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('**/.ci/*.sh') }}
restore-keys: |
${{ matrix.os }}-${{ matrix.python-version }}-
@ -46,7 +46,7 @@ jobs:
with:
path: ~/Library/Caches/pip
key:
${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('**/.travis/*.sh') }}
${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('**/.ci/*.sh') }}
restore-keys: |
${{ matrix.os }}-${{ matrix.python-version }}-
@ -61,7 +61,7 @@ jobs:
- name: Install Linux dependencies
if: startsWith(matrix.os, 'ubuntu')
run: |
.travis/install.sh
.ci/install.sh
- name: Install macOS dependencies
if: startsWith(matrix.os, 'macOS')
@ -70,11 +70,11 @@ jobs:
- name: Build
run: |
.travis/build.sh
.ci/build.sh
- name: Test
run: |
.travis/test.sh
.ci/test.sh
- name: Upload errors
uses: actions/upload-artifact@v1
@ -86,7 +86,7 @@ jobs:
- name: After success
if: success()
run: |
.travis/after_success.sh
.ci/after_success.sh
env:
MATRIX_OS: ${{ matrix.os }}
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}

View File

@ -45,7 +45,7 @@ install:
if [ "$LINT" == "true" ]; then
pip install tox
else
.travis/install.sh;
.ci/install.sh;
fi
script:
@ -53,12 +53,12 @@ script:
if [ "$LINT" == "true" ]; then
tox -e lint
else
.travis/build.sh
.travis/test.sh
.ci/build.sh
.ci/test.sh
fi
after_success:
- |
if [ "$LINT" == "" ]; then
.travis/after_success.sh
.ci/after_success.sh
fi

View File

@ -26,4 +26,4 @@ global-exclude .git*
global-exclude *.pyc
global-exclude *.so
prune .azure-pipelines
prune .travis
prune .ci