From 65370a0f56c665372aa3afdc6cfb1c3dcf5b264b Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Tue, 14 Jul 2020 21:32:41 -0700 Subject: [PATCH] Try a couple different way to fix the build. --- .github/workflows/ccpp.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index e4e51c5a..7c843dd1 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -63,11 +63,11 @@ jobs: - name: prep run: | cyg-get make autoconf automake gcc-core gcc-g++ libssl-devel libzstd-devel liblz4-devel - echo "::add-path::.C:/tools/cygwin/bin" + echo "::add-path::C:/tools/cygwin/bin" - name: configure - run: bash -c './configure --disable-md2man --disable-xxhash' + run: c:/tools/cygwin/bin/bash -c './configure --disable-md2man --disable-xxhash' - name: make - run: bash -c 'make' + run: c:/tools/cygwin/bin/bash -c 'make' - name: install run: bash -c 'make install' - name: info -- 2.47.2