File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ concurrency:
4545jobs :
4646 find-changes :
4747 name : Find changed files
48- uses : ./.github/workflows/reusable_find_changes .yaml
48+ uses : ./.github/workflows/_find_changes .yaml
4949 secrets : inherit
5050
5151 build-wheels :
@@ -121,7 +121,7 @@ jobs:
121121 - if : matrix.conf.os != 'windows-2025'
122122 name : Run the build and test script (non-Windows case)
123123 env :
124- # SHELLOPTS is used by Bash. Add xtrace when doing manual debug runs.
124+ # Add xtrace to SHELLOPTS for all Bash scripts when doing debug runs.
125125 SHELLOPTS : ${{inputs.debug && 'xtrace' || '' }}
126126 run : dev_tools/test_libs.sh ${{env.use-verbose && '--config=verbose'}}
127127
Original file line number Diff line number Diff line change @@ -45,15 +45,15 @@ concurrency:
4545jobs :
4646 find-changes :
4747 name : Find changed files
48- uses : ./.github/workflows/reusable_find_changes .yaml
48+ uses : ./.github/workflows/_find_changes .yaml
4949 secrets : inherit
5050
5151 build-wheels :
5252 # For efficiency, skip this workflow if there were no code file changes.
5353 if : needs.find-changes.outputs.code || github.event_name == 'workflow_dispatch'
5454 name : Build & test wheels
5555 needs : find-changes
56- uses : ./.github/workflows/reusable_build_wheels .yaml
56+ uses : ./.github/workflows/_build_wheels .yaml
5757 secrets : inherit
5858 with :
5959 debug : ${{inputs.debug == true}}
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ concurrency:
4545jobs :
4646 find-changes :
4747 name : Find changed files
48- uses : ./.github/workflows/reusable_find_changes .yaml
48+ uses : ./.github/workflows/_find_changes .yaml
4949 secrets : inherit
5050
5151 build-and-test :
Original file line number Diff line number Diff line change 1212# See the License for the specific language governing permissions and
1313# limitations under the License.
1414
15- name : ' CI: lint & format checks '
15+ name : ' CI: check code format'
1616run-name : Test with linters and formatters
1717
1818on :
@@ -45,7 +45,7 @@ concurrency:
4545jobs :
4646 find-changes :
4747 name : Find changed files
48- uses : ./.github/workflows/reusable_find_changes .yaml
48+ uses : ./.github/workflows/_find_changes .yaml
4949 secrets : inherit
5050
5151 check-format :
Original file line number Diff line number Diff line change 1212# See the License for the specific language governing permissions and
1313# limitations under the License.
1414
15- name : ' CI: hardware options tests '
15+ name : ' CI: test with different hardware options'
1616run-name : Test with instruction set extensions and parallelism
1717
1818on :
@@ -45,7 +45,7 @@ concurrency:
4545jobs :
4646 find-changes :
4747 name : Find changed files
48- uses : ./.github/workflows/reusable_find_changes .yaml
48+ uses : ./.github/workflows/_find_changes .yaml
4949 secrets : inherit
5050
5151 test-options :
Original file line number Diff line number Diff line change 1212# See the License for the specific language governing permissions and
1313# limitations under the License.
1414
15- name : ' CI: sanitizer tests'
15+ name : ' CI: run sanitizer tests'
1616run-name : Test with address and memory sanitizers
1717
1818on :
@@ -45,7 +45,7 @@ concurrency:
4545jobs :
4646 find-changes :
4747 name : Find changed files
48- uses : ./.github/workflows/reusable_find_changes .yaml
48+ uses : ./.github/workflows/_find_changes .yaml
4949 secrets : inherit
5050
5151 sanitizer-tests :
Original file line number Diff line number Diff line change 1212# See the License for the specific language governing permissions and
1313# limitations under the License.
1414
15- name : ' CI: TCMalloc test'
15+ name : ' CI: run TCMalloc test'
1616run-name : Test with TCMalloc (thread-caching malloc)
1717
1818on :
@@ -45,7 +45,7 @@ concurrency:
4545jobs :
4646 find-changes :
4747 name : Find changed files
48- uses : ./.github/workflows/reusable_find_changes .yaml
48+ uses : ./.github/workflows/_find_changes .yaml
4949 secrets : inherit
5050
5151 tcmalloc-test :
Original file line number Diff line number Diff line change 1919# getting applied, check the run summary page for errors.
2020# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2121
22- name : Pull request labeler
22+ name : Label pull requests
2323run-name : >-
2424 Label pull request ${{github.event.pull_request.number}} by ${{github.actor}}
2525
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ permissions: read-all
3131jobs :
3232 build-wheels :
3333 name : Build and save wheels
34- uses : ./.github/workflows/reusable_build_wheels .yaml
34+ uses : ./.github/workflows/_build_wheels .yaml
3535 secrets : inherit
3636 with :
3737 upload : true
You can’t perform that action at this time.
0 commit comments