diff options
-rw-r--r-- | .github/workflows/ci.yml | 2 | ||||
-rw-r--r-- | ChangeLog.adoc | 2 | ||||
-rw-r--r-- | Makefile.am | 2 | ||||
-rwxr-xr-x | tools/build_test.sh (renamed from tools/build-test.sh) | 12 |
4 files changed, 9 insertions, 9 deletions
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 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. # |