Skip to content

Commit 0f666ab

Browse files
committed
removed unnecessary chagnes
1 parent 4a81e3a commit 0f666ab

File tree

1 file changed

+2
-19
lines changed

1 file changed

+2
-19
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
name: CI
2-
3-
concurrency:
4-
group: onnxruntime-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
5-
cancel-in-progress: true
1+
name: CI && Release & Upload Wheel
62

73
on:
84
workflow_call:
@@ -16,10 +12,6 @@ on:
1612
default: "main"
1713
workflow_dispatch:
1814
inputs:
19-
is_experimental:
20-
description: "Create an experimental build"
21-
type: boolean
22-
default: false
2315
onnxruntime_branch:
2416
type: string
2517
default: "main"
@@ -30,9 +22,6 @@ on:
3022
branches:
3123
- main
3224

33-
env:
34-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
35-
3625
jobs:
3726
build_and_upload_wheel_linux:
3827
runs-on: The_CTOs_Choice
@@ -45,7 +34,6 @@ jobs:
4534
with:
4635
repository: quadric-io/onnxruntime
4736
ref: ${{ inputs.onnxruntime_branch || github.ref }}
48-
token: ${{ secrets.GH_PAT }}
4937

5038
- name: Fetch sha
5139
id: fetch_sha
@@ -58,11 +46,7 @@ jobs:
5846
working-directory: /workspace
5947
run: |
6048
python3 -m pip install "cmake<4"
61-
62-
# Always run tests - no skipping for any scenario
63-
test_args=""
64-
65-
./build.sh --build_wheel --config Release --parallel $test_args --skip_submodule_sync --allow_running_as_root --compile_no_warning_as_error
49+
./build.sh --build_wheel --config Release --parallel --skip_submodule_sync --allow_running_as_root --compile_no_warning_as_error
6650
6751
wheel_path=$(find . -name '*.whl' | xargs readlink -f)
6852
echo "wheel_path=$wheel_path" >> $GITHUB_ENV
@@ -82,7 +66,6 @@ jobs:
8266
with:
8367
repository: quadric-io/onnxruntime
8468
ref: ${{ inputs.onnxruntime_branch || github.ref }}
85-
token: ${{ secrets.GH_PAT }}
8669

8770
- name: Fetch sha
8871
id: fetch_sha

0 commit comments

Comments
 (0)