We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 420f03c commit 0b304c7Copy full SHA for 0b304c7
โ.github/workflows/test-installer.yml
@@ -33,7 +33,6 @@ jobs:
33
run: |
34
export CLIPBOARD_TMPDIR=$TMPDIR
35
sh src/install.sh
36
- stty rows 80 cols 120
37
bash src/tests/suite.sh
38
windows-amd64:
39
strategy:
โsrc/tests/status.sh
@@ -7,11 +7,11 @@ make_files
7
8
clipboard copy testfile testdir
9
10
-# check CI is true and the runner is Windows
+# check CI is true and the runner is not Linux
11
set +u
12
-if [ "$CI" = "true" ] && [ "$RUNNER_OS" = "Windows" ]
+if [ "$CI" = "true" ] && [ "$(uname)" != "Linux" ]
13
then
14
- echo "Skipping test on Windows CI due to Not A TTY bug"
+ echo "Skipping test on this platform CI due to Not A TTY bug"
15
exit 0
16
fi
17
0 commit comments