Browse Source

Fix CI error with tput in shell scripts.

emscripten-ci
Joao Matos 2 years ago
parent
commit
11b42e71b4
  1. 6
      tests/emscripten/test.sh
  2. 6
      tests/napi/test.sh
  3. 6
      tests/quickjs/test.sh
  4. 6
      tests/ts/test.sh

6
tests/emscripten/test.sh

@ -7,9 +7,9 @@ configuration=debug @@ -7,9 +7,9 @@ configuration=debug
platform=x64
jsinterp=node
red=`tput setaf 1`
green=`tput setaf 2`
reset=`tput sgr0`
red=`tput -T ansi setaf 1`
green=`tput -T ansi setaf 2`
reset=`tput -T ansi sgr0`
generate=true

6
tests/napi/test.sh

@ -5,9 +5,9 @@ rootdir="$dir/../.." @@ -5,9 +5,9 @@ rootdir="$dir/../.."
configuration=Release
platform=x64
red=`tput setaf 1`
green=`tput setaf 2`
reset=`tput sgr0`
red=`tput -T ansi setaf 1`
green=`tput -T ansi setaf 2`
reset=`tput -T ansi sgr0`
echo "${green}Generating bindings${reset}"
dotnet $rootdir/bin/${configuration}_${platform}/CppSharp.CLI.dll \

6
tests/quickjs/test.sh

@ -7,9 +7,9 @@ configuration=debug @@ -7,9 +7,9 @@ configuration=debug
platform=x64
jsinterp="$rootdir/deps/quickjs/qjs-debug"
red=`tput setaf 1`
green=`tput setaf 2`
reset=`tput sgr0`
red=`tput -T ansi setaf 1`
green=`tput -T ansi setaf 2`
reset=`tput -T ansi sgr0`
generate=true

6
tests/ts/test.sh

@ -7,9 +7,9 @@ configuration=debug @@ -7,9 +7,9 @@ configuration=debug
platform=x64
jsinterp="$rootdir/deps/quickjs/qjs-debug"
red=`tput setaf 1`
green=`tput setaf 2`
reset=`tput sgr0`
red=`tput -T ansi setaf 1`
green=`tput -T ansi setaf 2`
reset=`tput -T ansi sgr0`
generate=true

Loading…
Cancel
Save