From ca4bfde2aab1b6e0d94881eea6f3cc7f535283cb Mon Sep 17 00:00:00 2001 From: "Xinwei Xiong(cubxxw-openim)" <3293172751nss@gmail.com> Date: Wed, 9 Aug 2023 15:40:16 +0800 Subject: [PATCH] feat: add scripts cross ower Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com> --- scripts/gen-swagger-docs.sh | 14 ++++++++------ scripts/lib/chat.sh | 0 scripts/lib/init.sh | 1 + scripts/lib/test.sh | 0 scripts/make-rules/golang.mk | 5 +++-- scripts/update-yamlfmt.sh | 0 scripts/verify-yamlfmt.sh | 0 tools/changelog/changelog.go | 2 +- tools/infra/{main.go => infra.go} | 2 +- tools/ncpu/{main.go => ncpu.go} | 2 +- tools/ncpu/{main_test.go => ncpu_test.go} | 2 +- tools/yamlfmt/{main.go => yamlfmt.go} | 2 +- tools/yamlfmt/{main_test.go => yamlfmt_test.go} | 2 +- 13 files changed, 18 insertions(+), 14 deletions(-) mode change 100644 => 100755 scripts/gen-swagger-docs.sh mode change 100644 => 100755 scripts/lib/chat.sh mode change 100644 => 100755 scripts/lib/test.sh mode change 100644 => 100755 scripts/update-yamlfmt.sh mode change 100644 => 100755 scripts/verify-yamlfmt.sh rename tools/infra/{main.go => infra.go} (98%) rename tools/ncpu/{main.go => ncpu.go} (98%) rename tools/ncpu/{main_test.go => ncpu_test.go} (98%) rename tools/yamlfmt/{main.go => yamlfmt.go} (99%) rename tools/yamlfmt/{main_test.go => yamlfmt_test.go} (99%) diff --git a/scripts/gen-swagger-docs.sh b/scripts/gen-swagger-docs.sh old mode 100644 new mode 100755 index ddae83f4d..f0540b3d6 --- a/scripts/gen-swagger-docs.sh +++ b/scripts/gen-swagger-docs.sh @@ -20,13 +20,15 @@ set -o nounset set -o pipefail # The root of the build/dist directory -OPENIM_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd -P)" +OPENIM_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd -P)" +source ${OPENIM_ROOT}/scripts/lib/util.sh -cd /build +mkdir -p ${OPENIM_OUTPUT_TMP} +cd ${OPENIM_OUTPUT_TMP} # gendocs takes "input.json" as the input swagger spec. # $1 is expected to be _ -cp /swagger-source/"$1".json input.json +cp ${OPENIM_OUTPUT_TMP}/swagger-source/"$1".json ${OPENIM_OUTPUT_TMP}/input.json ./gradle-2.5/bin/gradle gendocs --info @@ -65,7 +67,7 @@ echo -e "=== any\nRepresents an untyped JSON map - see the description of the fi asciidoctor definitions.adoc asciidoctor paths.adoc -cp definitions.html /output/ -cp paths.html /output/operations.html +cp ${OPENIM_OUTPUT_TMP}/definitions.html ${OPENIM_OUTPUT_TMP}/_output/ +cp ${OPENIM_OUTPUT_TMP}/paths.html ${OPENIM_OUTPUT_TMP}/_output/operations.html -echo "SUCCESS" \ No newline at end of file +success "SUCCESS" \ No newline at end of file diff --git a/scripts/lib/chat.sh b/scripts/lib/chat.sh old mode 100644 new mode 100755 diff --git a/scripts/lib/init.sh b/scripts/lib/init.sh index 2b7e2abc5..f0e783cd3 100755 --- a/scripts/lib/init.sh +++ b/scripts/lib/init.sh @@ -37,6 +37,7 @@ OPENIM_OUTPUT="${OPENIM_ROOT}/${OPENIM_OUTPUT_SUBPATH}" OPENIM_OUTPUT_BINPATH="${OPENIM_OUTPUT}/bin/platforms" OPENIM_OUTPUT_BINTOOLPATH="${OPENIM_OUTPUT}/bin-tools" OPENIM_OUTPUT_TOOLS="${OPENIM_OUTPUT}/tools" +OPENIM_OUTPUT_TMP="${OPENIM_OUTPUT}/tmp" # This controls rsync compression. Set to a value > 0 to enable rsync # compression for build container diff --git a/scripts/lib/test.sh b/scripts/lib/test.sh old mode 100644 new mode 100755 diff --git a/scripts/make-rules/golang.mk b/scripts/make-rules/golang.mk index 3d538384a..aee6abbc7 100644 --- a/scripts/make-rules/golang.mk +++ b/scripts/make-rules/golang.mk @@ -130,9 +130,10 @@ go.build.%: if [ -f $(ROOT_DIR)/cmd/$(COMMAND)/main.go ]; then \ CGO_ENABLED=0 GOOS=$(OS) GOARCH=$(ARCH) $(GO) build $(GO_BUILD_FLAGS) -o \ $(BIN_DIR)/platforms/$(OS)/$(ARCH)/$(COMMAND)$(GO_OUT_EXT) $(ROOT_DIR)/cmd/$(COMMAND)/main.go; \ - elif [ -f $(ROOT_DIR)/tools/$(COMMAND)/main.go ]; then \ + elif [ -f $(ROOT_DIR)/tools/$(COMMAND)/$(COMMAND).go ]; then \ CGO_ENABLED=0 GOOS=$(OS) GOARCH=$(ARCH) $(GO) build $(GO_BUILD_FLAGS) -o \ - $(BIN_TOOLS_DIR)/platforms/$(OS)/$(ARCH)/$(COMMAND)$(GO_OUT_EXT) $(ROOT_DIR)/tools/$(COMMAND)/main.go; \ + $(BIN_TOOLS_DIR)/platforms/$(OS)/$(ARCH)/$(COMMAND)$(GO_OUT_EXT) $(ROOT_DIR)/tools/$(COMMAND)/$(COMMAND).go; \ + chmod +x $(BIN_TOOLS_DIR)/platforms/$(OS)/$(ARCH)/$(COMMAND)$(GO_OUT_EXT); \ fi \ fi diff --git a/scripts/update-yamlfmt.sh b/scripts/update-yamlfmt.sh old mode 100644 new mode 100755 diff --git a/scripts/verify-yamlfmt.sh b/scripts/verify-yamlfmt.sh old mode 100644 new mode 100755 diff --git a/tools/changelog/changelog.go b/tools/changelog/changelog.go index 7428db5fa..d6e855a22 100644 --- a/tools/changelog/changelog.go +++ b/tools/changelog/changelog.go @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -package main +package changelog import ( "fmt" diff --git a/tools/infra/main.go b/tools/infra/infra.go similarity index 98% rename from tools/infra/main.go rename to tools/infra/infra.go index cc20a17c7..8068c85ca 100644 --- a/tools/infra/main.go +++ b/tools/infra/infra.go @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -package main +package infra import ( "fmt" diff --git a/tools/ncpu/main.go b/tools/ncpu/ncpu.go similarity index 98% rename from tools/ncpu/main.go rename to tools/ncpu/ncpu.go index 7ca3dff5e..2604d87b2 100644 --- a/tools/ncpu/main.go +++ b/tools/ncpu/ncpu.go @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -package main +package ncpu import ( "fmt" diff --git a/tools/ncpu/main_test.go b/tools/ncpu/ncpu_test.go similarity index 98% rename from tools/ncpu/main_test.go rename to tools/ncpu/ncpu_test.go index f24203226..0c5bb9a70 100644 --- a/tools/ncpu/main_test.go +++ b/tools/ncpu/ncpu_test.go @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -package main +package ncpu import "testing" diff --git a/tools/yamlfmt/main.go b/tools/yamlfmt/yamlfmt.go similarity index 99% rename from tools/yamlfmt/main.go rename to tools/yamlfmt/yamlfmt.go index 4bad00fca..dc7c2076d 100644 --- a/tools/yamlfmt/main.go +++ b/tools/yamlfmt/yamlfmt.go @@ -13,7 +13,7 @@ // limitations under the License. // OPENIM plan on prow tools -package main +package yamlfmt import ( "flag" diff --git a/tools/yamlfmt/main_test.go b/tools/yamlfmt/yamlfmt_test.go similarity index 99% rename from tools/yamlfmt/main_test.go rename to tools/yamlfmt/yamlfmt_test.go index 481eee2bc..85017e449 100644 --- a/tools/yamlfmt/main_test.go +++ b/tools/yamlfmt/yamlfmt_test.go @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -package main +package yamlfmt import ( "bufio"