Skip to content

Commit 1cd6031

Browse files
authored
[GLUTEN-10834][CORE] Prefer hyphens over underscores in shell script names (#10836)
Closes #10834
1 parent 1e93504 commit 1cd6031

File tree

55 files changed

+68
-68
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+68
-68
lines changed

.github/labeler.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ BUILD:
3030
- changed-files:
3131
- any-glob-to-any-file: [
3232
'dev/**/*',
33-
'ep/build-velox/src/get_velox.sh',
34-
'ep/build-velox/src/build_velox.sh',
35-
'ep/build-clickhouse/src/build_clickhouse.sh'
33+
'ep/build-velox/src/get-velox.sh',
34+
'ep/build-velox/src/build-velox.sh',
35+
'ep/build-clickhouse/src/build-clickhouse.sh'
3636
]
3737

3838
DOCS:

.github/workflows/build_bundle_package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ name: Build bundle package
1818
env:
1919
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
2020
CCACHE_DIR: "${{ github.workspace }}/.ccache"
21-
SETUP: 'bash .github/workflows/util/setup_helper.sh'
21+
SETUP: 'bash .github/workflows/util/setup-helper.sh'
2222

2323
concurrency:
2424
group: ${{ github.repository }}-${{ github.head_ref || github.sha }}-${{ github.workflow }}

.github/workflows/docker_image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ on:
2121
- main
2222
paths:
2323
- '.github/workflows/docker_image.yml'
24-
- '.github/workflows/util/install_spark_resources.sh'
24+
- '.github/workflows/util/install-spark-resources.sh'
2525
- 'dev/docker/Dockerfile.centos7-static-build'
2626
- 'dev/docker/Dockerfile.centos8-static-build'
2727
- 'dev/docker/Dockerfile.centos9-static-build'

.github/workflows/scala_code_format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ concurrency:
3838
cancel-in-progress: true
3939

4040
env:
41-
SETUP: 'bash .github/workflows/util/setup_helper.sh'
41+
SETUP: 'bash .github/workflows/util/setup-helper.sh'
4242

4343
jobs:
4444

File renamed without changes.

.github/workflows/velox_backend_arm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ env:
4343
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
4444
MVN_CMD: 'mvn -ntp'
4545
WGET_CMD: 'wget -nv'
46-
SETUP: 'bash .github/workflows/util/setup_helper.sh'
46+
SETUP: 'bash .github/workflows/util/setup-helper.sh'
4747
CCACHE_DIR: "${{ github.workspace }}/.ccache"
4848

4949
concurrency:

.github/workflows/velox_backend_cache.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ jobs:
183183
# run: |
184184
# rm -rf /opt/miniconda-for-velox/
185185
# cd ep/build-velox/src && \
186-
# ./get_velox.sh
186+
# ./get-velox.sh
187187
# cd ../build/velox_ep/
188188
# make EXTRA_CMAKE_FLAGS="-DVELOX_ENABLE_PARQUET=ON -DVELOX_BUILD_TESTING=ON -DVELOX_BUILD_TEST_UTILS=ON"
189189

@@ -221,7 +221,7 @@ jobs:
221221
# run: |
222222
# rm -rf /opt/miniconda-for-velox/
223223
# cd ep/build-velox/src && \
224-
# ./get_velox.sh
224+
# ./get-velox.sh
225225
# cd ../build/velox_ep/
226226
# source /opt/rh/gcc-toolset-9/enable
227227
# make EXTRA_CMAKE_FLAGS="-DVELOX_ENABLE_PARQUET=ON -DVELOX_BUILD_TESTING=ON -DVELOX_BUILD_TEST_UTILS=ON"

.github/workflows/velox_backend_enhanced.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ env:
4242
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
4343
MVN_CMD: 'mvn -ntp'
4444
WGET_CMD: 'wget -nv'
45-
SETUP: 'bash .github/workflows/util/setup_helper.sh'
45+
SETUP: 'bash .github/workflows/util/setup-helper.sh'
4646
CCACHE_DIR: "${{ github.workspace }}/.ccache"
4747

4848
concurrency:
@@ -229,7 +229,7 @@ jobs:
229229
- name: Prepare Spark Resources for Spark 3.5.5
230230
run: |
231231
rm -rf /opt/shims/spark35
232-
bash .github/workflows/util/install_spark_resources.sh 3.5
232+
bash .github/workflows/util/install-spark-resources.sh 3.5
233233
- name: Build and Run unit test for Spark 3.5.5 (slow tests)
234234
run: |
235235
cd $GITHUB_WORKSPACE/

.github/workflows/velox_backend_x86.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ env:
4343
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
4444
MVN_CMD: 'mvn -ntp'
4545
WGET_CMD: 'wget -nv'
46-
SETUP: 'source .github/workflows/util/setup_helper.sh'
46+
SETUP: 'source .github/workflows/util/setup-helper.sh'
4747
CCACHE_DIR: "${{ github.workspace }}/.ccache"
4848
# spark.sql.ansi.enabled defaults to false.
4949
SPARK_ANSI_SQL_MODE: false

0 commit comments

Comments
 (0)