From b7ce3acb739dca44aefc3c0b06e6452f1a66e6dc Mon Sep 17 00:00:00 2001 From: Branden Archer Date: Mon, 29 Jun 2020 08:53:28 -0700 Subject: [PATCH] attempt to use full path in commands --- .github/workflows/windows.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 48059d82..10f19c15 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -85,11 +85,15 @@ jobs: - uses: actions/checkout@v2 - name: add msys2 to path run: echo "::add-path::C:\msys64\usr\bin" + - name: dir msys64 + run: dir C:\msys64\ + - name: dir msys64 bin + run: dir C:\msys64\usr\bin - name: autoreconf - run: msys2_shell.cmd -defterm -mingw64 -no-start -full-path -here -c "autoreconf -i" + run: C:\msys64\msys2_shell.cmd -defterm -mingw64 -no-start -full-path -here -c "autoreconf -i" - name: configure - run: msys2_shell.cmd -defterm -mingw64 -no-start -full-path -here -c "./configure" + run: C:\msys64\msys2_shell.cmd -defterm -mingw64 -no-start -full-path -here -c "./configure" - name: make - run: msys2_shell.cmd -defterm -mingw64 -no-start -full-path -here -c "make" + run: C:\msys64\msys2_shell.cmd -defterm -mingw64 -no-start -full-path -here -c "make" - name: test - run: msys2_shell.cmd -defterm -mingw64 -no-start -full-path -here -c "tests/check_check" + run: C:\msys64\msys2_shell.cmd -defterm -mingw64 -no-start -full-path -here -c "tests/check_check"