Skip to content

Commit

Permalink
attempt to use full path in commands
Browse files Browse the repository at this point in the history
  • Loading branch information
brarcher authored Jun 29, 2020
1 parent b93a430 commit b7ce3ac
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit b7ce3ac

Please sign in to comment.