mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
Move scripts from .travis to .ci because they're also used by GitHub Actions
This commit is contained in:
parent
5e9336af4c
commit
428b06365e
2
.github/workflows/test-docker.yml
vendored
2
.github/workflows/test-docker.yml
vendored
|
@ -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 }}
|
||||
|
||||
|
|
12
.github/workflows/test.yml
vendored
12
.github/workflows/test.yml
vendored
|
@ -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 }}
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -26,4 +26,4 @@ global-exclude .git*
|
|||
global-exclude *.pyc
|
||||
global-exclude *.so
|
||||
prune .azure-pipelines
|
||||
prune .travis
|
||||
prune .ci
|
||||
|
|
Loading…
Reference in New Issue
Block a user