Skip to content

Commit b630aae

Browse files
authored
Merge branch 'dev_1.10.1' into development_issue_1609
2 parents eda0073 + 77643d4 commit b630aae

16 files changed

+45
-36
lines changed

.github/workflows/ci-deepspeech-v2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ jobs:
2929
- name: Run Test Action
3030
uses: ./.github/actions/deepspeech-v2
3131
- name: Upload coverage to Codecov
32-
uses: codecov/codecov-action@v2.1.0
32+
uses: codecov/codecov-action@v3
3333
with:
3434
fail_ci_if_error: true

.github/workflows/ci-deepspeech-v3.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Run Test Action
3030
uses: ./.github/actions/deepspeech-v3
3131
- name: Upload coverage to Codecov
32-
uses: codecov/codecov-action@v2.1.0
32+
uses: codecov/codecov-action@v3
3333
with:
3434
fail_ci_if_error: true
3535
test_deepspeech_v3_torch_1_10:
@@ -42,6 +42,6 @@ jobs:
4242
- name: Run Test Action
4343
uses: ./.github/actions/deepspeech-v3
4444
- name: Upload coverage to Codecov
45-
uses: codecov/codecov-action@v2.1.0
45+
uses: codecov/codecov-action@v3
4646
with:
4747
fail_ci_if_error: true

.github/workflows/ci-espresso.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ jobs:
2929
- name: Run Test Action
3030
uses: ./.github/actions/espresso
3131
- name: Upload coverage to Codecov
32-
uses: codecov/codecov-action@v2.1.0
32+
uses: codecov/codecov-action@v3
3333
with:
3434
fail_ci_if_error: true

.github/workflows/ci-goturn.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ jobs:
2929
- name: Run Test Action
3030
uses: ./.github/actions/goturn
3131
- name: Upload coverage to Codecov
32-
uses: codecov/codecov-action@v2.1.0
32+
uses: codecov/codecov-action@v3
3333
with:
3434
fail_ci_if_error: true

.github/workflows/ci-keras.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,6 @@ jobs:
7171
- name: Run Tests
7272
run: ./run_tests.sh ${{ matrix.framework }}
7373
- name: Upload coverage to Codecov
74-
uses: codecov/codecov-action@v2.1.0
74+
uses: codecov/codecov-action@v3
7575
with:
7676
fail_ci_if_error: true

.github/workflows/ci-legacy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,6 @@ jobs:
6060
- name: Run ${{ matrix.name }} ${{ matrix.module }} Tests
6161
run: ./run_tests.sh ${{ matrix.framework }} ${{ matrix.module }}
6262
- name: Upload coverage to Codecov
63-
uses: codecov/codecov-action@v2.1.0
63+
uses: codecov/codecov-action@v3
6464
with:
6565
fail_ci_if_error: true

.github/workflows/ci-lingvo.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
sudo apt-get update
4848
sudo apt-get -y -q install ffmpeg libavcodec-extra
4949
python -m pip install --upgrade pip setuptools wheel
50-
pip install -q -r <(sed '/^scipy/d;/^matplotlib/d;/^pandas/d;/^statsmodels/d;/^numba/d;/^jax/d;/^h5py/d;/^Pillow/d;/^pytest-mock/d' requirements_test.txt)
50+
pip install -q -r <(sed '/^scipy/d;/^matplotlib/d;/^pandas/d;/^statsmodels/d;/^numba/d;/^jax/d;/^h5py/d;/^Pillow/d;/^pytest/d;/^pytest-mock/d;/^torch/d;/^torchaudio/d;/^torchvision/d' requirements_test.txt)
5151
pip install scipy==1.5.4
5252
pip install matplotlib==3.3.4
5353
pip install pandas==1.1.5
@@ -60,11 +60,17 @@ jobs:
6060
pip install model-pruning-google-research==0.0.3
6161
pip install jax[cpu]==0.2.17
6262
pip install h5py==2.10.0
63+
pip install pytest~=7.0.1
64+
pip install pytest-flake8~=1.1.0
6365
pip install pytest-mock
66+
pip install pytest-cov~=3.0.0
67+
pip install torch==1.10.2+cpu --find-links https://download.pytorch.org/whl/cpu/torch_stable.html
68+
pip install torchaudio==0.10.2+cpu --find-links https://download.pytorch.org/whl/cpu/torch_stable.html
69+
pip install torchvision==0.11.3+cpu --find-links https://download.pytorch.org/whl/cpu/torch_stable.html
6470
pip list
6571
- name: Run ${{ matrix.name }} Tests
6672
run: ./run_tests.sh ${{ matrix.framework }}
6773
- name: Upload coverage to Codecov
68-
uses: codecov/codecov-action@v2.1.0
74+
uses: codecov/codecov-action@v3
6975
with:
7076
fail_ci_if_error: true

.github/workflows/ci-mxnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@ jobs:
4949
- name: Run ${{ matrix.name }} ${{ matrix.module }} Tests
5050
run: ./run_tests.sh ${{ matrix.framework }} ${{ matrix.module }}
5151
- name: Upload coverage to Codecov
52-
uses: codecov/codecov-action@v2.1.0
52+
uses: codecov/codecov-action@v3
5353
with:
5454
fail_ci_if_error: true

.github/workflows/ci-pytorch-object-detectors.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,6 @@ jobs:
4848
- name: Run Test Action - test_pytorch_faster_rcnn
4949
run: pytest --cov-report=xml --cov=art --cov-append -q -vv tests/estimators/object_detection/test_pytorch_faster_rcnn.py --framework=pytorch --durations=0
5050
- name: Upload coverage to Codecov
51-
uses: codecov/codecov-action@v2.1.0
51+
uses: codecov/codecov-action@v3
5252
with:
5353
fail_ci_if_error: true

.github/workflows/ci-pytorch.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,6 @@ jobs:
2525
fail-fast: false
2626
matrix:
2727
include:
28-
- name: PyTorch 1.8.1 (Python 3.8)
29-
framework: pytorch
30-
python: 3.8
31-
torch: 1.8.1+cpu
32-
torchvision: 0.9.1+cpu
33-
torchaudio: 0.8.1
3428
- name: PyTorch 1.9.1 (Python 3.8)
3529
framework: pytorch
3630
python: 3.8
@@ -43,6 +37,12 @@ jobs:
4337
torch: 1.10.2+cpu
4438
torchvision: 0.11.3+cpu
4539
torchaudio: 0.10.2+cpu
40+
- name: PyTorch 1.11.0 (Python 3.8)
41+
framework: pytorch
42+
python: 3.8
43+
torch: 1.11.0+cpu
44+
torchvision: 0.12.0+cpu
45+
torchaudio: 0.11.0
4646

4747
name: ${{ matrix.name }}
4848
steps:
@@ -67,6 +67,6 @@ jobs:
6767
- name: Run Tests
6868
run: ./run_tests.sh ${{ matrix.framework }}
6969
- name: Upload coverage to Codecov
70-
uses: codecov/codecov-action@v2.1.0
70+
uses: codecov/codecov-action@v3
7171
with:
7272
fail_ci_if_error: true

0 commit comments

Comments
 (0)