chore: temporarily disable doc related CI (#5704)

This commit is contained in:
Roman Krasiuk
2023-12-06 04:29:05 -08:00
committed by GitHub
parent 227e1b7ad5
commit 7ee3c7062b
2 changed files with 9 additions and 2 deletions

View File

@ -53,6 +53,8 @@ jobs:
run: mdbook-linkcheck --standalone
build:
# TODO: reenable when <https://github.com/rust-lang/rust/issues/118670> is resolved.
if: false
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
@ -114,7 +116,8 @@ jobs:
deploy:
# Only deploy if a push to main
if: github.ref_name == 'main' && github.event_name == 'push'
# TODO: reenable when <https://github.com/rust-lang/rust/issues/118670> is resolved.
if: false && github.ref_name == 'main' && github.event_name == 'push'
runs-on: ubuntu-latest
needs: [test, lint, build]

View File

@ -57,6 +57,8 @@ jobs:
docs:
name: docs
# TODO: reenable when <https://github.com/rust-lang/rust/issues/118670> is resolved.
if: false
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
@ -98,7 +100,9 @@ jobs:
name: lint success
runs-on: ubuntu-latest
if: always()
needs: [clippy, docs, fmt, grafana]
# TODO: reenable when <https://github.com/rust-lang/rust/issues/118670> is resolved.
# needs: [clippy, docs, fmt, grafana]
needs: [clippy, fmt, grafana]
timeout-minutes: 30
steps:
- name: Decide whether the needed jobs succeeded or failed