mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00

* Fix SC2006: Use $(...) notation instead of legacy backticked `...`. * Fix SC2016: Expressions don't expand in single quotes, use double quotes for that. * Fix SC2046: Quote this to prevent word splitting. * Fix SC2053: Quote the right-hand side of == in [[ ]] to prevent glob matching. * Fix SC2068: Double quote array expansions to avoid re-splitting elements. * Fix SC2086: Double quote to prevent globbing and word splitting. * Fix SC2102: Ranges can only match single chars (mentioned due to duplicates). * Fix SC2140: Word is of the form "A"B"C" (B indicated). Did you mean "ABC" or "A\"B\"C"? * Fix SC2145: Argument mixes string and array. Use * or separate argument. * Fix SC2209: warning: Use var=$(command) to assign output (or quote to assign string). Co-authored-by: Mehrdad <noreply@github.com>
47 lines
1.5 KiB
Bash
Executable file
47 lines
1.5 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
(cd .. && bazel build //java:all_tests_deploy.jar)
|
|
|
|
function generate_one()
|
|
{
|
|
file=${1//./_}.h
|
|
javah -classpath ../bazel-bin/java/all_tests_deploy.jar "$1"
|
|
clang-format -i "$file"
|
|
|
|
cat <<EOF > ../src/ray/core_worker/lib/java/"$file"
|
|
// Copyright 2017 The Ray Authors.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
EOF
|
|
cat "$file" >> ../src/ray/core_worker/lib/java/"$file"
|
|
rm -f "$file"
|
|
}
|
|
|
|
generate_one io.ray.runtime.RayNativeRuntime
|
|
generate_one io.ray.runtime.task.NativeTaskSubmitter
|
|
generate_one io.ray.runtime.context.NativeWorkerContext
|
|
generate_one io.ray.runtime.actor.NativeActorHandle
|
|
generate_one io.ray.runtime.object.NativeObjectStore
|
|
generate_one io.ray.runtime.task.NativeTaskExecutor
|
|
generate_one io.ray.runtime.gcs.GlobalStateAccessor
|
|
generate_one io.ray.runtime.metric.NativeMetric
|
|
|
|
# Remove empty files
|
|
rm -f io_ray_runtime_RayNativeRuntime_AsyncContext.h
|
|
rm -f io_ray_runtime_task_NativeTaskExecutor_NativeActorContext.h
|