Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
atalman committed May 30, 2023
1 parent c5396f9 commit c25227b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test_build_conda_linux_with_cuda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ on:
workflow_dispatch:

jobs:
get-date: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
generate-matrix:
uses: ./.github/workflows/generate_binary_build_matrix.yml
with:
Expand All @@ -19,14 +22,14 @@ jobs:
test-infra-repository: ${{ github.repository }}
test-infra-ref: ${{ github.ref }}
test:
needs: generate-matrix
needs: generate-matrix, get-date
strategy:
fail-fast: false
matrix:
include:
- repository: pytorch/audio
cache-path: /third_party/ffmpeg
cache-key: linux-ffmpeg-${{ hashFiles('**/Makefile') }}
cache-key: linux-ffmpeg-${{ needs.get-date.outputs.date }}
cache-miss-script: packaging/pre_build_script.sh
post-script: packaging/post_build_script.sh
smoke-test-script: test/smoke_test/smoke_test.py
Expand Down

0 comments on commit c25227b

Please sign in to comment.