Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/build_ffmpeg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ on:
pull_request:
paths:
- packaging/build_ffmpeg.sh
- .github/workflows/build_ffmpeg.yaml # self reference
schedule:
- cron: '0 0 * * 0' # on sunday

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/cpp_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on:
push:
branches: [ main ]
pull_request:
paths:
- src/torchcodec/*
- test/*
- .github/workflows/cpp_tests.yaml # self reference

concurrency:
group: unit-test${{ github.workflow }}-${{ github.ref == 'refs/heads/main' && github.run_number || github.ref }}
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on:
push:
branches: [ main ]
pull_request:
paths:
- src/torchcodec/*
- docs/*
- .github/workflows/docs.yaml # self reference

defaults:
run:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/linux_cuda_wheel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ name: Build and test Linux CUDA wheels

on:
pull_request:
paths:
- src/torchcodec/*
- packaging/*
- test/*
- .github/workflows/linux_cuda_wheel.yaml # self reference
push:
branches:
- nightly
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/linux_wheel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ name: Build and test Linux wheel

on:
pull_request:
paths:
- src/torchcodec/*
- packaging/*
- test/*
- .github/workflows/linux_wheel.yaml # self reference
push:
branches:
- nightly
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/macos_wheel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ name: Build and test MacOS wheel

on:
pull_request:
paths:
- src/torchcodec/*
- packaging/*
- test/*
- .github/workflows/macos_wheel.yaml # self reference
push:
branches:
- nightly
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/reference_resources.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
pull_request:
paths:
- test/generate_reference_resources.sh
- .github/workflows/reference_resources.yaml # self reference
schedule:
- cron: '0 0 * * 0' # on sunday

Expand Down
Loading