Merge fb197fd53d
into ea9bd9fc74
This commit is contained in:
commit
64ab65a184
16
.github/workflows/run_tests.yaml
vendored
16
.github/workflows/run_tests.yaml
vendored
|
@ -7,23 +7,31 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
python-version: ['3.10.6', '3.10', '3.7']
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Code
|
- name: Checkout Code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
- name: Set up Python 3.10
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: 3.10.6
|
python-version: ${{ matrix.python-version }}
|
||||||
cache: pip
|
cache: pip
|
||||||
cache-dependency-path: |
|
cache-dependency-path: |
|
||||||
**/requirements*txt
|
**/requirements*txt
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: python launch.py --tests --no-half --disable-opt-split-attention --use-cpu all --skip-torch-cuda-test
|
run: |
|
||||||
|
if [ ${{ matrix.python-version }} = 3.7 ]; then
|
||||||
|
export REQS_FILE=requirements.txt
|
||||||
|
fi
|
||||||
|
python launch.py --tests --no-half --disable-opt-split-attention --use-cpu all --skip-torch-cuda-test
|
||||||
- name: Upload main app stdout-stderr
|
- name: Upload main app stdout-stderr
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
if: always()
|
if: always()
|
||||||
with:
|
with:
|
||||||
name: stdout-stderr
|
name: stdout-stderr-${{ matrix.python-version }}
|
||||||
path: |
|
path: |
|
||||||
test/stdout.txt
|
test/stdout.txt
|
||||||
test/stderr.txt
|
test/stderr.txt
|
||||||
|
|
Loading…
Reference in New Issue
Block a user