Add debugging output to macOS build for locating JNI headers

This commit is contained in:
John J. Camilleri
2020-11-18 23:15:15 +01:00
parent 6ee7c88f34
commit 0d12c7101c

View File

@@ -17,6 +17,11 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
# just to see output
- run: locate jni.h
- run: find / -name jni.h
- run: brew reinstall openjdk
- name: Setup Haskell - name: Setup Haskell
uses: actions/setup-haskell@v1 uses: actions/setup-haskell@v1
id: setup-haskell-cabal id: setup-haskell-cabal
@@ -27,8 +32,7 @@ jobs:
- name: Install build tools - name: Install build tools
run: | run: |
brew install \ brew install \
automake \ automake
openjdk
cabal v1-install alex happy cabal v1-install alex happy
- name: Build macOS package - name: Build macOS package