Skip to content

Commit 1432366

Browse files
author
Dinesh Reddy
committed
-Disabled riscv-native, editorconfig, python-type-check, server checklist run for every commit
Signed-off-by: Dinesh Reddy <[email protected]>
1 parent 7a6ce92 commit 1432366

File tree

6 files changed

+317
-298
lines changed

6 files changed

+317
-298
lines changed

.flake8

Lines changed: 0 additions & 18 deletions
This file was deleted.

.github/workflows/build-riscv-native.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,17 @@
33
# Original workflow provided RISCV64 native builds but added overhead
44
# To re-enable: uncomment the entire workflow below
55

6-
# name: Build on RISCV Linux Machine by Cloud-V
7-
# on:
6+
name: RISCV-Build-DISABLED
7+
8+
on:
9+
workflow_dispatch: # Only manual triggering allowed, no automatic runs
10+
11+
jobs:
12+
disabled:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Workflow Disabled
16+
run: echo "RISCV build workflow has been disabled to reduce CI coverage-like runs"
817
# pull_request:
918
# workflow_dispatch:
1019
# workflow_call:

.github/workflows/editorconfig.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,17 @@
33
# Original workflow provided code formatting checks but added overhead
44
# To re-enable: uncomment the entire workflow below
55

6-
# name: EditorConfig Checker
7-
#
8-
# on:
6+
name: EditorConfig-DISABLED
7+
8+
on:
9+
workflow_dispatch: # Only manual triggering allowed, no automatic runs
10+
11+
jobs:
12+
disabled:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Workflow Disabled
16+
run: echo "EditorConfig workflow has been disabled to reduce CI coverage-like runs"
917
# workflow_dispatch: # allows manual triggering
1018
# inputs:
1119
# create_release:
Lines changed: 44 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,45 @@
1-
name: Python Type-Check
1+
# DISABLED: Python Type-Check
2+
# This workflow has been disabled to reduce CI coverage-like runs
3+
# Original workflow provided Python type checking but added overhead
4+
# To re-enable: uncomment the entire workflow below
25

3-
on:
4-
push:
5-
paths:
6-
- '.github/workflows/python-type-check.yml'
7-
- 'pyrightconfig.json'
8-
- '**.py'
9-
- '**/requirements*.txt'
10-
pull_request:
11-
paths:
12-
- '.github/workflows/python-type-check.yml'
13-
- 'pyrightconfig.json'
14-
- '**.py'
15-
- '**/requirements*.txt'
16-
17-
concurrency:
18-
group: ${{ github.workflow }}-${{ github.head_ref && github.ref || github.run_id }}
19-
cancel-in-progress: true
20-
21-
jobs:
22-
python-type-check:
23-
runs-on: ubuntu-latest
24-
name: pyright type-check
25-
steps:
26-
- name: Check out source repository
27-
uses: actions/checkout@v4
28-
- name: Set up Python environment
29-
uses: actions/setup-python@v5
30-
with:
31-
python-version: "3.11"
32-
- name: Install Python dependencies
33-
# TODO: use a venv
34-
run: pip install -r requirements/requirements-all.txt
35-
- name: Type-check with Pyright
36-
uses: jakebailey/pyright-action@v2
37-
with:
38-
version: 1.1.382
39-
level: warning
40-
warnings: true
6+
# name: Python Type-Check
7+
#
8+
# on:
9+
# push:
10+
# paths:
11+
# - '.github/workflows/python-type-check.yml'
12+
# - 'pyrightconfig.json'
13+
# - '**.py'
14+
# - '**/requirements*.txt'
15+
# pull_request:
16+
# paths:
17+
# - '.github/workflows/python-type-check.yml'
18+
# - 'pyrightconfig.json'
19+
# - '**.py'
20+
# - '**/requirements*.txt'
21+
#
22+
# concurrency:
23+
# group: ${{ github.workflow }}-${{ github.head_ref && github.ref || github.run_id }}
24+
# cancel-in-progress: true
25+
#
26+
# jobs:
27+
# python-type-check:
28+
# runs-on: ubuntu-latest
29+
# name: pyright type-check
30+
# steps:
31+
# - name: Check out source repository
32+
# uses: actions/checkout@v4
33+
# - name: Set up Python environment
34+
# uses: actions/setup-python@v5
35+
# with:
36+
# python-version: "3.11"
37+
# - name: Install Python dependencies
38+
# # TODO: use a venv
39+
# run: pip install -r requirements/requirements-all.txt
40+
# - name: Type-check with Pyright
41+
# uses: jakebailey/pyright-action@v2
42+
# with:
43+
# version: 1.1.382
44+
# level: warning
45+
# warnings: true

0 commit comments

Comments
 (0)