1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-12 14:14:48 +02:00

core: rename script build-test.sh to build_test.sh

This commit is contained in:
Sébastien Helleu
2023-01-05 08:05:04 +01:00
parent db81c07e1f
commit 3c65bc6831
4 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -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:
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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 \
+6 -6
View File
@@ -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.
#