From 3c65bc683192f29d930740edf32ebbaa27a1f365 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Thu, 5 Jan 2023 08:05:04 +0100 Subject: [PATCH] core: rename script build-test.sh to build_test.sh --- .github/workflows/ci.yml | 2 +- ChangeLog.adoc | 2 +- Makefile.am | 2 +- tools/{build-test.sh => build_test.sh} | 12 ++++++------ 4 files changed, 9 insertions(+), 9 deletions(-) rename tools/{build-test.sh => build_test.sh} (88%) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5a9637e21..82b7bfef9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,7 +57,7 @@ jobs: CXX: ${{ matrix.config.cxx }} BUILDTOOL: ${{ matrix.config.tool }} BUILDARGS: ${{ matrix.config.args }} - run: ./tools/build-test.sh + run: ./tools/build_test.sh - name: Run WeeChat env: diff --git a/ChangeLog.adoc b/ChangeLog.adoc index 8592a845c..674ad2aac 100644 --- a/ChangeLog.adoc +++ b/ChangeLog.adoc @@ -65,7 +65,7 @@ Tests:: Build:: - * core: rename scripts: build-debian.sh to build_debian.sh, git-version.sh to set_git_version.sh + * core: rename scripts: build-debian.sh to build_debian.sh, build-test.sh to build_test.sh, git-version.sh to set_git_version.sh * debian: change dependency guile-2.2-dev to guile-3.0-dev * python: remove support of Python 2.x * ruby: add detection of Ruby 3.2 diff --git a/Makefile.am b/Makefile.am index b02ee948c..b0a5b32b1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -60,7 +60,7 @@ EXTRA_DIST = AUTHORS.adoc \ cmake/cmake_uninstall.cmake.in \ po/CMakeLists.txt \ po/srcfiles.cmake \ - tools/build-test.sh \ + tools/build_test.sh \ tools/set_git_version.sh \ tools/makedist.sh \ version.sh \ diff --git a/tools/build-test.sh b/tools/build_test.sh similarity index 88% rename from tools/build-test.sh rename to tools/build_test.sh index 7197f268e..b2916e2a6 100755 --- a/tools/build-test.sh +++ b/tools/build_test.sh @@ -24,14 +24,14 @@ # - BUILDARGS: arguments for cmake or configure commands # # Syntax to run the script with environment variables: -# BUILDTOOL=cmake ./build-test.sh -# BUILDTOOL=autotools ./build-test.sh -# BUILDTOOL=cmake BUILDARGS="arguments" ./build-test.sh -# BUILDTOOL=autotools BUILDARGS="arguments" ./build-test.sh +# BUILDTOOL=cmake ./build_test.sh +# BUILDTOOL=autotools ./build_test.sh +# BUILDTOOL=cmake BUILDARGS="arguments" ./build_test.sh +# BUILDTOOL=autotools BUILDARGS="arguments" ./build_test.sh # # Syntax to run the script with arguments on command line: -# ./build-test.sh cmake [arguments] -# ./build-test.sh autotools [arguments] +# ./build_test.sh cmake [arguments] +# ./build_test.sh autotools [arguments] # # This script is used to build WeeChat in CI environment. #