diff --git a/.github/workflows/update-drci-comments.yml b/.github/workflows/update-drci-comments.yml index 6ac8ed870b..6711a4e18f 100644 --- a/.github/workflows/update-drci-comments.yml +++ b/.github/workflows/update-drci-comments.yml @@ -10,83 +10,30 @@ on: jobs: update-drci-comments: runs-on: ubuntu-22.04 + strategy: + fail-fast: false + matrix: + repo: [ + ao, + audio, + data, + executorch, + pytorch, + rl, + text, + torchchat, + torchtune, + tutorials, + vision, + ] steps: - name: Checkout uses: actions/checkout@v4 - - name: Retrieve rockset query results and update Dr. CI comments for the PyTorch repo + - name: Retrieve rockset query results and update Dr. CI comments run: | curl --request POST \ - --url 'https://www.torch-ci.com/api/drci/drci' \ - --header 'Authorization: ${{ secrets.DRCI_BOT_KEY }}' \ - --data 'repo=pytorch' - - - name: Retrieve rockset query results and update Dr. CI comments for the Vision repo - run: | - curl --request POST \ - --url 'https://www.torch-ci.com/api/drci/drci' \ - --header 'Authorization: ${{ secrets.DRCI_BOT_KEY }}' \ - --data 'repo=vision' - - - name: Retrieve rockset query results and update Dr. CI comments for the Text repo - run: | - curl --request POST \ - --url 'https://www.torch-ci.com/api/drci/drci' \ - --header 'Authorization: ${{ secrets.DRCI_BOT_KEY }}' \ - --data 'repo=text' - - - name: Retrieve rockset query results and update Dr. CI comments for the Data repo - run: | - curl --request POST \ - --url 'https://www.torch-ci.com/api/drci/drci' \ - --header 'Authorization: ${{ secrets.DRCI_BOT_KEY }}' \ - --data 'repo=data' - - - name: Retrieve rockset query results and update Dr. CI comments for the Audio repo - run: | - curl --request POST \ - --url 'https://www.torch-ci.com/api/drci/drci' \ - --header 'Authorization: ${{ secrets.DRCI_BOT_KEY }}' \ - --data 'repo=audio' - - - name: Retrieve rockset query results and update Dr. CI comments for the Tutorials repo - run: | - curl --request POST \ - --url 'https://www.torch-ci.com/api/drci/drci' \ - --header 'Authorization: ${{ secrets.DRCI_BOT_KEY }}' \ - --data 'repo=tutorials' - - - name: Retrieve the Rockset query results and update Dr. CI comments for the ExecuTorch repo - run: | - curl --request POST \ - --url 'https://www.torch-ci.com/api/drci/drci' \ - --header 'Authorization: ${{ secrets.DRCI_BOT_KEY }}' \ - --data 'repo=executorch' - - - name: Retrieve the Rockset query results and update Dr. CI comments for the RL repo - run: | - curl --request POST \ - --url 'https://www.torch-ci.com/api/drci/drci' \ - --header 'Authorization: ${{ secrets.DRCI_BOT_KEY }}' \ - --data 'repo=rl' - - - name: Retrieve the Rockset query results and update Dr. CI comments for the TorchTune repo - run: | - curl --request POST \ - --url 'https://www.torch-ci.com/api/drci/drci' \ - --header 'Authorization: ${{ secrets.DRCI_BOT_KEY }}' \ - --data 'repo=torchtune' - - - name: Retrieve the Rockset query results and update Dr. CI comments for the torchao repo - run: | - curl --request POST \ - --url 'https://www.torch-ci.com/api/drci/drci' \ - --header 'Authorization: ${{ secrets.DRCI_BOT_KEY }}' \ - --data 'repo=ao' - - - name: Retrieve the Rockset query results and update Dr. CI comments for the torchchat repo - run: | - curl --request POST \ - --url 'https://www.torch-ci.com/api/drci/drci' \ - --header 'Authorization: ${{ secrets.DRCI_BOT_KEY }}' \ - --data 'repo=torchchat' + --url 'https://www.torch-ci.com/api/drci/drci' \ + --header 'Authorization: ${{ secrets.DRCI_BOT_KEY }}' \ + --data 'repo=${{ matrix.repo }}' \ + --silent --output /dev/null --show-error --fail diff --git a/torchci/lib/bot/utils.ts b/torchci/lib/bot/utils.ts index 7c928f55a3..84c6eec78f 100644 --- a/torchci/lib/bot/utils.ts +++ b/torchci/lib/bot/utils.ts @@ -4,7 +4,9 @@ import { Context, Probot } from "probot"; import urllib from "urllib"; export function isTime0(time: string): boolean { - return dayjs.utc(time).valueOf() == 0; + const v = dayjs.utc(time).valueOf(); + // NB: This returns NaN when the string is empty + return isNaN(v) || v === 0; } export const TIME_0 = "1970-01-01 00:00:00.000000000"; diff --git a/torchci/pages/api/drci/drci.ts b/torchci/pages/api/drci/drci.ts index c25787d97c..72ec6239cb 100644 --- a/torchci/pages/api/drci/drci.ts +++ b/torchci/pages/api/drci/drci.ts @@ -59,6 +59,13 @@ export interface UpdateCommentBody { repo: string; } +// Attempt to set the maxDuration of this serveless function on Vercel https://vercel.com/docs/functions/configuring-functions/duration, +// also according to https://vercel.com/docs/functions/runtimes#max-duration, the max duration +// for an enterprise account is 900 +export const config = { + maxDuration: 900, +}; + export default async function handler( req: NextApiRequest, res: NextApiResponse<{