Skip to content

Commit

Permalink
Fix failed github action CIs (pytorch#674)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: pytorch#674

CI tests failed since "actions/upload-artifact v2" has been deprecated. Made an update to v4 (https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/?fbclid=IwZXh0bgNhZW0CMTEAAR1iwvZrpiBOv2Q9J1q2Ge1ZuEH8XNOC2eb1Zlhr6Fg3Z_TshdH0qLDjCpQ_aem_LI9OLm9MWhuc9f0M8sZRjw).

Reviewed By: EnayatUllah

Differential Revision: D62675356

fbshipit-source-id: ea798ce8b4d4f86eb424dc232c67e011bc1da6da
  • Loading branch information
HuanyuZhang authored and facebook-github-bot committed Sep 17, 2024
1 parent 9eed06a commit a246aa6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci_cpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
coverage run -m pytest --doctest-modules -p conftest --junitxml=unittest-py38-release-reports/junit.xml opacus
coverage report -i -m
- name: Store test results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: unittest-py38-release-reports
path: unittest-py38-release-reports
Expand All @@ -80,7 +80,7 @@ jobs:
coverage run -m pytest --doctest-modules -p conftest --junitxml=unittest-py39-release-reports/junit.xml opacus
coverage report -i -m
- name: Store test results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: unittest-py39-release-reports
path: unittest-py39-release-reports
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
mkdir unittest-py39-nightly-reports
python -m pytest --doctest-modules -p conftest --junitxml=unittest-py39-nightly-reports/junit.xml opacus
- name: Store test results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: unittest-py39-nightly-reports
path: unittest-py39-nightly-reports
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
python -c "import torch; accuracy = torch.load('run_results_mnist_0.25_0.7_1.5_64_1.pt'); exit(0) if (accuracy[0]>0.78 and accuracy[0]<0.95) else exit(1)"
coverage report -i -m
- name: Store test results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: mnist-cpu-reports
path: runs/mnist/test-reports
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci_gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
python -c "import torch; accuracy = torch.load('run_results_mnist_0.25_0.7_1.5_64_1.pt'); exit(0) if (accuracy[0]>0.78 and accuracy[0]<0.95) else exit(1)"
- name: Store MNIST test results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: mnist-gpu-reports
path: runs/mnist/test-reports
Expand All @@ -89,7 +89,7 @@ jobs:
python -c "import torch; model = torch.load('model_best.pth.tar'); exit(0) if (model['best_acc1']>0.4 and model['best_acc1']<0.49) else exit(1)"
- name: Store CIFAR10 test results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: cifar10-gpu-reports
path: runs/cifar10/test-reports
Expand All @@ -104,7 +104,7 @@ jobs:
# python -c "import torch; accuracy = torch.load('run_results_imdb_classification.pt'); exit(0) if (accuracy>0.54 and accuracy<0.66) else exit(1)"

# - name: Store IMDb test results
# uses: actions/upload-artifact@v2
# uses: actions/upload-artifact@v4
# with:
# name: imdb-gpu-reports
# path: runs/imdb/test-reports
Expand All @@ -121,7 +121,7 @@ jobs:
# python -c "import torch; accuracy = torch.load('run_results_chr_lstm_classification.pt'); exit(0) if (accuracy>0.60 and accuracy<0.80) else exit(1)"

# - name: Store test results
# uses: actions/upload-artifact@v2
# uses: actions/upload-artifact@v4
# with:
# name: charlstm-gpu-reports
# path: runs/charlstm/test-reports
Expand Down

0 comments on commit a246aa6

Please sign in to comment.