Skip to content

Commit 7175714

Browse files
committed
removed unnecessary chagnes
1 parent 4a81e3a commit 7175714

File tree

1 file changed

+2
-15
lines changed

1 file changed

+2
-15
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CI
1+
name: CI && Release & Upload Wheel
22

33
concurrency:
44
group: onnxruntime-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
@@ -16,10 +16,6 @@ on:
1616
default: "main"
1717
workflow_dispatch:
1818
inputs:
19-
is_experimental:
20-
description: "Create an experimental build"
21-
type: boolean
22-
default: false
2319
onnxruntime_branch:
2420
type: string
2521
default: "main"
@@ -30,9 +26,6 @@ on:
3026
branches:
3127
- main
3228

33-
env:
34-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
35-
3629
jobs:
3730
build_and_upload_wheel_linux:
3831
runs-on: The_CTOs_Choice
@@ -45,7 +38,6 @@ jobs:
4538
with:
4639
repository: quadric-io/onnxruntime
4740
ref: ${{ inputs.onnxruntime_branch || github.ref }}
48-
token: ${{ secrets.GH_PAT }}
4941

5042
- name: Fetch sha
5143
id: fetch_sha
@@ -58,11 +50,7 @@ jobs:
5850
working-directory: /workspace
5951
run: |
6052
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
53+
./build.sh --build_wheel --config Release --parallel --skip_submodule_sync --allow_running_as_root --compile_no_warning_as_error
6654
6755
wheel_path=$(find . -name '*.whl' | xargs readlink -f)
6856
echo "wheel_path=$wheel_path" >> $GITHUB_ENV
@@ -82,7 +70,6 @@ jobs:
8270
with:
8371
repository: quadric-io/onnxruntime
8472
ref: ${{ inputs.onnxruntime_branch || github.ref }}
85-
token: ${{ secrets.GH_PAT }}
8673

8774
- name: Fetch sha
8875
id: fetch_sha

0 commit comments

Comments
 (0)