FIX: Force MAKE=/usr/bin/make

Why isn't CYGWIN_NOWINPATH working?
This commit is contained in:
DWesl 2024-05-09 14:06:16 -04:00 committed by GitHub
parent 8a52acb360
commit bc522f118a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -110,8 +110,11 @@ jobs:
###
- name: (CMake) Configure Build
env:
MAKE: "/usr/bin/make"
run: |
LDFLAGS="-Wl,--export-all-symbols" \
MAKE=/usr/bin/make \
/usr/bin/cmake \
-G"Unix Makefiles" \
-B build \
@ -137,6 +140,8 @@ jobs:
run: cat build/libnetcdf.settings
- name: (CMake) Build All
env:
MAKE: "/usr/bin/make"
run: cmake --build build -j$(nproc)
if: ${{ success() }}