@@ -68,37 +68,37 @@ jobs:
6868 name : ${{ matrix.name }}
6969 path : ${{ env.BIN }}
7070
71- build-py-binding :
72- runs-on : ubuntu-latest
73- steps :
74- - uses : actions/checkout@v6
75- with :
76- persist-credentials : false
77- - name : Set up Python
78- uses : actions/setup-python@v6
79- id : setup-python
80- with :
81- python-version : ' 3.x'
82- - name : Build wheels
83- uses : PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380 # v1.49.4
84- with :
85- target : x86_64
86- args : --release --out dist --find-interpreter
87- manylinux : auto
88- before-script-linux : |
89- # NOTE: rust-cross/manylinux docker images are CentOS based
90- yum update -y
91- yum install -y openssl openssl-devel
92- - name : Upload wheels
93- uses : actions/upload-artifact@v5
94- with :
95- name : wheel
96- path : dist/cpp_linter-*-cp3*-abi3-*.whl
97- if-no-files-found : error
71+ # build-py-binding:
72+ # runs-on: ubuntu-latest
73+ # steps:
74+ # - uses: actions/checkout@v6
75+ # with:
76+ # persist-credentials: false
77+ # - name: Set up Python
78+ # uses: actions/setup-python@v6
79+ # id: setup-python
80+ # with:
81+ # python-version: '3.x'
82+ # - name: Build wheels
83+ # uses: PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380 # v1.49.4
84+ # with:
85+ # target: x86_64
86+ # args: --release --out dist --find-interpreter
87+ # manylinux: auto
88+ # before-script-linux: |
89+ # # NOTE: rust-cross/manylinux docker images are CentOS based
90+ # yum update -y
91+ # yum install -y openssl openssl-devel
92+ # - name: Upload wheels
93+ # uses: actions/upload-artifact@v5
94+ # with:
95+ # name: wheel
96+ # path: dist/cpp_linter-*-cp3*-abi3-*.whl
97+ # if-no-files-found: error
9898
9999 benchmark :
100100 name : Measure Performance Difference
101- needs : [build-bin, build-py-binding]
101+ needs : [build-bin] # , build-py-binding]
102102 runs-on : ubuntu-latest
103103 steps :
104104 - uses : actions/checkout@v6
@@ -132,11 +132,11 @@ jobs:
132132 working-directory : benchmark
133133 shell : nu {0}
134134 run : |-
135- let new_py = (
136- glob "../wheel/cpp_linter-*-cp3*-abi3-*.whl"
137- | first
138- | path expand
139- )
135+ # let new_py = (
136+ # glob "../wheel/cpp_linter-*-cp3*-abi3-*.whl"
137+ # | first
138+ # | path expand
139+ # )
140140 let prev_bin = "../previous/cpp-linter" | path expand
141141 let curr_bin = "../current/cpp-linter" | path expand
142- nu benchmark.nu --new-py $new_py -- rust-bin $curr_bin --prev-rust-bin $prev_bin
142+ nu benchmark.nu --rust-bin $curr_bin --prev-rust-bin $prev_bin
0 commit comments