We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c263792 commit ca322a8Copy full SHA for ca322a8
.github/workflows/test.yml
@@ -45,12 +45,6 @@ jobs:
45
mingw-w64-x86_64-gcc
46
make
47
48
- - name: Install GNU coreutils (macOS)
49
- if: runner.os == 'macOS'
50
- run: |
51
- brew install coreutils
52
- echo "$(brew --prefix coreutils)/libexec/gnubin" >> $GITHUB_PATH
53
-
54
- name: Run ${{ matrix.suite }}
55
if: runner.os == 'Windows'
56
shell: msys2 {0}
test/run.sh
@@ -4,6 +4,11 @@ run()
4
instfile=`mktemp Installer.tmp.XXXXXX`
5
echo $1 > $instfile
6
7
+ which gstat > /dev/null 2>&1
8
+ if [ $? -eq 0 ]; then
9
+ alias stat='gstat'
10
+ fi
11
+
12
which valgrind > /dev/null 2>&1
13
if [ $? -eq 0 ] && [ -z "${LG_SMOKE}" ]; then
14
l=`mktemp leak.tmp.XXXXXX`
0 commit comments