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 pip install wheel
sudo apt-get install -qq ruby-dev sudo apt-get install -qq ruby-dev
PATH="$PATH:~/.local/bin" PATH="$PATH:~/.local/bin"
.travis/after_success.sh .ci/after_success.sh
env: env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}

View File

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

View File

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

View File

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