Skip to content

Commit

Permalink
Update GitHub Actions targets (HabanaAI#622)
Browse files Browse the repository at this point in the history
New useful checks were added, and we're not running them on habana_main
per PR. This PR fixes that.
  • Loading branch information
kzawora-intel authored Dec 11, 2024
1 parent d312c92 commit 7ef6b2c
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 92 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/actionlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ name: Lint GitHub Actions workflows
on:
push:
branches:
- "main"
- "habana_main"
paths:
- '.github/workflows/*.ya?ml'
- '.github/workflows/actionlint.*'
- '.github/workflows/matchers/actionlint.json'
pull_request:
branches:
- "main"
- "habana_main"
paths:
- '.github/workflows/*.ya?ml'
- '.github/workflows/actionlint.*'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
# but only for the main branch
push:
branches:
- main
- habana_main
paths:
- "**/*.py"
- "**/*.md"
Expand All @@ -15,7 +15,7 @@ on:
- .github/workflows/codespell.yml
pull_request:
branches:
- main
- habana_main
paths:
- "**/*.py"
- "**/*.md"
Expand Down
81 changes: 0 additions & 81 deletions .github/workflows/lint-and-deploy.yaml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/png-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ name: Lint PNG exports from excalidraw
on:
push:
branches:
- "main"
- "habana_main"
paths:
- '*.excalidraw.png'
- '.github/workflows/png-lint.yml'
pull_request:
branches:
- "main"
- "habana_main"
paths:
- '*.excalidraw.png'
- '.github/workflows/png-lint.yml'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/shellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ name: Lint shell scripts
on:
push:
branches:
- "main"
- "habana_main"
paths:
- '**/*.sh'
- '.github/workflows/shellcheck.yml'
pull_request:
branches:
- "main"
- "habana_main"
paths:
- '**/*.sh'
- '.github/workflows/shellcheck.yml'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sphinx-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ name: Lint documentation
on:
push:
branches:
- main
- habana_main
paths:
- "docs/**"
pull_request:
branches:
- main
- habana_main
paths:
- "docs/**"

Expand Down
2 changes: 1 addition & 1 deletion README_GAUDI.md
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ INFO 08-02 17:38:43 hpu_executor.py:91] init_cache_engine took 37.92 GiB of devi
- `VLLM_HPU_LOG_STEP_GRAPH_COMPILATION_ALL`: if `true`, will log graph compilations per each vLLM engine step, always, even if there were none. Disabled by default.
- `VLLM_HPU_LOG_STEP_CPU_FALLBACKS`: if `true`, will log cpu fallbacks per each vLLM engine step, only when there was any. Disabled by default.
- `VLLM_HPU_LOG_STEP_CPU_FALLBACKS_ALL`: if `true`, will log cpu fallbacks per each vLLM engine step, always, even if there were none. Disabled by default.
- `VLLM_REGIONAL_COMPILATION`: if `false`, turn off regional complation (when using torch.compile execution mode).
- `VLLM_REGIONAL_COMPILATION`: if `false`, turn off regional compilation (when using torch.compile execution mode).

**Performance tuning knobs:**

Expand Down

0 comments on commit 7ef6b2c

Please sign in to comment.