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: Self-hosted runner (nightly-past-ci-caller) | ||
on: | ||
schedule: | ||
# 2:17 am on each Sunday and Thursday | ||
- cron: "17 2 * * 0,4" | ||
push: | ||
branches: | ||
- run_past_ci* | ||
- build-cleanup-docker-build | ||
jobs: | ||
get_number: | ||
name: Get number | ||
if: ${{ env.GITHUB_RUN_NUMBER == 181 }} | ||
Check failure on line 15 in .github/workflows/self-nightly-past-ci-caller.yml GitHub Actions / Self-hosted runner (nightly-past-ci-caller)Invalid workflow file
|
||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Get number | ||
run: | | ||
echo "${{ vars.GITHUB_RUN_NUMBER }}" | ||
echo "${{ env.GITHUB_RUN_NUMBER }}" | ||
echo $GITHUB_RUN_NUMBER | ||
# run_past_ci_pytorch_1-13: | ||
# name: PyTorch 1.13 | ||
# if: (cancelled() != true) && ((github.event_name == 'schedule') || ((github.event_name == 'push') && startsWith(github.ref_name, 'build-cleanup-docker-build'))) | ||
# uses: ./.github/workflows/self-past-caller.yml | ||
# with: | ||
# framework: pytorch | ||
# version: "1.13" | ||
# sha: ${{ github.sha }} | ||
# secrets: inherit | ||
# | ||
# run_past_ci_pytorch_1-12: | ||
# name: PyTorch 1.12 | ||
# if: (cancelled() != true) && ((github.event_name == 'schedule') || ((github.event_name == 'push') && startsWith(github.ref_name, 'run_past_ci'))) | ||
# needs: [run_past_ci_pytorch_1-13] | ||
# uses: ./.github/workflows/self-past.yml | ||
# with: | ||
# framework: pytorch | ||
# version: "1.12" | ||
# sha: ${{ github.sha }} | ||
# secrets: inherit | ||
# | ||
# run_past_ci_pytorch_1-11: | ||
# name: PyTorch 1.11 | ||
# if: (cancelled() != true) && ((github.event_name == 'schedule') || ((github.event_name == 'push') && startsWith(github.ref_name, 'run_past_ci'))) | ||
# needs: [run_past_ci_pytorch_1-12] | ||
# uses: ./.github/workflows/self-past.yml | ||
# with: | ||
# framework: pytorch | ||
# version: "1.11" | ||
# sha: ${{ github.sha }} | ||
# secrets: inherit | ||
# | ||
# run_past_ci_tensorflow_2-11: | ||
# name: TensorFlow 2.11 | ||
# if: (cancelled() != true) && ((github.event_name == 'push') && startsWith(github.ref_name, 'run_past_ci')) | ||
# needs: [run_past_ci_pytorch_1-11] | ||
# uses: ./.github/workflows/self-past.yml | ||
# with: | ||
# framework: tensorflow | ||
# version: "2.11" | ||
# sha: ${{ github.sha }} | ||
# secrets: inherit | ||
# | ||
# run_past_ci_tensorflow_2-10: | ||
# name: TensorFlow 2.10 | ||
# if: (cancelled() != true) && ((github.event_name == 'push') && startsWith(github.ref_name, 'run_past_ci')) | ||
# needs: [run_past_ci_tensorflow_2-11] | ||
# uses: ./.github/workflows/self-past.yml | ||
# with: | ||
# framework: tensorflow | ||
# version: "2.10" | ||
# sha: ${{ github.sha }} | ||
# secrets: inherit | ||
# | ||
# run_past_ci_tensorflow_2-9: | ||
# name: TensorFlow 2.9 | ||
# if: (cancelled() != true) && ((github.event_name == 'push') && startsWith(github.ref_name, 'run_past_ci')) | ||
# needs: [run_past_ci_tensorflow_2-10] | ||
# uses: ./.github/workflows/self-past.yml | ||
# with: | ||
# framework: tensorflow | ||
# version: "2.9" | ||
# sha: ${{ github.sha }} | ||
# secrets: inherit | ||
# | ||
# run_past_ci_tensorflow_2-8: | ||
# name: TensorFlow 2.8 | ||
# if: (cancelled() != true) && ((github.event_name == 'push') && startsWith(github.ref_name, 'run_past_ci')) | ||
# needs: [run_past_ci_tensorflow_2-9] | ||
# uses: ./.github/workflows/self-past.yml | ||
# with: | ||
# framework: tensorflow | ||
# version: "2.8" | ||
# sha: ${{ github.sha }} | ||
# secrets: inherit | ||
# | ||
# run_past_ci_tensorflow_2-7: | ||
# name: TensorFlow 2.7 | ||
# if: (cancelled() != true) && ((github.event_name == 'push') && startsWith(github.ref_name, 'run_past_ci')) | ||
# needs: [run_past_ci_tensorflow_2-8] | ||
# uses: ./.github/workflows/self-past.yml | ||
# with: | ||
# framework: tensorflow | ||
# version: "2.7" | ||
# sha: ${{ github.sha }} | ||
# secrets: inherit | ||
# | ||
# run_past_ci_tensorflow_2-6: | ||
# name: TensorFlow 2.6 | ||
# if: (cancelled() != true) && ((github.event_name == 'push') && startsWith(github.ref_name, 'run_past_ci')) | ||
# needs: [run_past_ci_tensorflow_2-7] | ||
# uses: ./.github/workflows/self-past.yml | ||
# with: | ||
# framework: tensorflow | ||
# version: "2.6" | ||
# sha: ${{ github.sha }} | ||
# secrets: inherit | ||
# | ||
# run_past_ci_tensorflow_2-5: | ||
# name: TensorFlow 2.5 | ||
# if: (cancelled() != true) && ((github.event_name == 'push') && startsWith(github.ref_name, 'run_past_ci')) | ||
# needs: [run_past_ci_tensorflow_2-6] | ||
# uses: ./.github/workflows/self-past.yml | ||
# with: | ||
# framework: tensorflow | ||
# version: "2.5" | ||
# sha: ${{ github.sha }} | ||
# secrets: inherit |