Update auto_accelerate to make it running with load_strategy #1533
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: CI | |
on: | |
pull_request: | |
push: | |
branches: [master] | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
# This step checks out a copy of your repository. | |
- uses: actions/checkout@v3 | |
# This step references the directory that contains the action. | |
- uses: ./.github/actions/pre-commit | |
dlrover-python-test: | |
runs-on: ubuntu-latest | |
steps: | |
# This step checks out a copy of your repository. | |
- uses: actions/checkout@v3 | |
# This step references the directory that contains the action. | |
- uses: ./.github/actions/dlrover-python-test | |
dlrover-trainer-test: | |
runs-on: ubuntu-latest | |
steps: | |
# This step checks out a copy of your repository. | |
- uses: actions/checkout@v3 | |
# This step references the directory that contains the action. | |
- uses: ./.github/actions/dlrover-trainer-test | |
operator-test: | |
runs-on: ubuntu-latest | |
steps: | |
# This step checks out a copy of your repository. | |
- uses: actions/checkout@v3 | |
# This step references the directory that contains the action. | |
- uses: ./.github/actions/operator-test | |
brain-test: | |
runs-on: ubuntu-latest | |
steps: | |
# This step checks out a copy of your repository. | |
- uses: actions/checkout@v3 | |
# This step references the directory that contains the action. | |
- uses: ./.github/actions/brain-test | |
dlrover-system-test-criteo-deeprec: | |
runs-on: ubuntu-latest | |
steps: | |
# This step checks out a copy of your repository. | |
- uses: actions/checkout@v3 | |
# This step references the directory that contains the action. | |
- uses: ./.github/actions/dlrover-system-test-criteo-deeprec | |
dlrover-system-test-deepfm: | |
runs-on: ubuntu-latest | |
steps: | |
# This step checks out a copy of your repository. | |
- uses: actions/checkout@v3 | |
# This step references the directory that contains the action. | |
- uses: ./.github/actions/dlrover-system-test-deepfm | |
dlrover-system-test-tf2: | |
runs-on: ubuntu-latest | |
steps: | |
# This step checks out a copy of your repository. | |
- uses: actions/checkout@v3 | |
# This step references the directory that contains the action. | |
- uses: ./.github/actions/dlrover-system-test-tf2 | |
dlrover-client-test: | |
runs-on: ubuntu-latest | |
steps: | |
# This step checks out a copy of your repository. | |
- uses: actions/checkout@v3 | |
# This step references the directory that contains the action. | |
- uses: ./.github/actions/dlrover-client-test | |
atorch-python-test: | |
runs-on: ubuntu-latest | |
steps: | |
# This step checks out a copy of your repository. | |
- uses: actions/checkout@v3 | |
# This step references the directory that contains the action. | |
- uses: ./.github/actions/atorch-python-test | |
atorch-pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
# This step checks out a copy of your repository. | |
- uses: actions/checkout@v3 | |
# This step references the directory that contains the action. | |
- uses: ./.github/actions/atorch-pre-commit | |
tfplus-python-test: | |
runs-on: ubuntu-latest | |
steps: | |
# This step checks out a copy of your repository. | |
- uses: actions/checkout@v3 | |
# This step references the directory that contains the action. | |
- uses: ./.github/actions/tfplus-python-test | |
tfplus-pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
# This step checks out a copy of your repository. | |
- uses: actions/checkout@v3 | |
# This step references the directory that contains the action. | |
- uses: ./.github/actions/tfplus-pre-commit |