Skip to content

Commit 0b304c7

Browse files
committed
Exclude everything but Linux
1 parent 420f03c commit 0b304c7

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

โ€Ž.github/workflows/test-installer.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ jobs:
3333
run: |
3434
export CLIPBOARD_TMPDIR=$TMPDIR
3535
sh src/install.sh
36-
stty rows 80 cols 120
3736
bash src/tests/suite.sh
3837
windows-amd64:
3938
strategy:

โ€Žsrc/tests/status.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ make_files
77

88
clipboard copy testfile testdir
99

10-
# check CI is true and the runner is Windows
10+
# check CI is true and the runner is not Linux
1111
set +u
12-
if [ "$CI" = "true" ] && [ "$RUNNER_OS" = "Windows" ]
12+
if [ "$CI" = "true" ] && [ "$(uname)" != "Linux" ]
1313
then
14-
echo "Skipping test on Windows CI due to Not A TTY bug"
14+
echo "Skipping test on this platform CI due to Not A TTY bug"
1515
exit 0
1616
fi
1717

0 commit comments

Comments
ย (0)