Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: 1 minute global timeout for docs #34095

Merged
merged 1 commit into from
Nov 24, 2024
Merged
Changes from all 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
6 changes: 2 additions & 4 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,29 +20,27 @@ jobs:
name: build docs
runs-on: ubuntu-latest
steps:
- uses: commaai/timeout@v1

- uses: actions/checkout@v4
timeout-minutes: 1
with:
submodules: true

# Build
- name: Build docs
timeout-minutes: 1
run: |
# TODO: can we install just the "docs" dependency group without the normal deps?
pip install mkdocs
mkdocs build

# Push to docs.comma.ai
- uses: actions/checkout@v4
timeout-minutes: 1
if: github.ref == 'refs/heads/master' && github.repository == 'commaai/openpilot'
with:
path: openpilot-docs
ssh-key: ${{ secrets.OPENPILOT_DOCS_KEY }}
repository: commaai/openpilot-docs
- name: Push
timeout-minutes: 1
if: github.ref == 'refs/heads/master' && github.repository == 'commaai/openpilot'
run: |
set -x
Expand Down