bump SWIG v4.3.0 (#126) #368
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Java Binding on macOS | |
on: | |
pull_request: | |
paths: | |
- ".github/workflows/test-darwin-java.yml" | |
- "mecab/**" | |
push: | |
branches: | |
- main | |
paths: | |
- ".github/workflows/test-darwin-java.yml" | |
- "mecab/**" | |
jobs: | |
tets: | |
name: Test | |
runs-on: macOS-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
distribution: | |
- temurin | |
- zulu | |
java: | |
- "8" | |
- "11" | |
- "17" | |
- "21" | |
exclude: | |
- distribution: temurin | |
java: "8" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup | |
run: .github/setup-darwin.sh | |
- name: restore cache | |
id: cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/local | |
key: v1-mecab-${{ runner.os }}-${{ hashFiles('mecab/src/*.cpp', 'mecab/src/*.h') }} | |
- name: configure PATH | |
run: | | |
echo "$HOME/local/bin" >> "$GITHUB_PATH" | |
- name: install mecab | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: | | |
./autogen.sh | |
./configure --enable-utf8-only --prefix "$HOME/local" | |
make -j2 | |
make install | |
working-directory: mecab | |
- name: install ipadic utf-8 | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: | | |
./autogen.sh --prefix "$HOME/local" | |
./configure --with-charset=utf8 | |
make | |
make install | |
working-directory: mecab-ipadic | |
- name: setup java ${{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
distribution: ${{ matrix.distribution }} | |
java-version: ${{ matrix.java }} | |
- name: configure C/C++ | |
run: | | |
echo "LD_LIBRARY_PATH=$HOME/local/lib:$JAVA_HOME/lib:$PWD/mecab/java" >> "$GITHUB_ENV" | |
echo "LIBRARY_PATH=$HOME/local/lib:$JAVA_HOME/lib" >> "$GITHUB_ENV" | |
echo "CPATH=$HOME/local/include:$JAVA_HOME/include:$JAVA_HOME/include/darwin" >> "$GITHUB_ENV" | |
- run: java -version | |
- name: build and test | |
run: | | |
./autogen.sh | |
./configure | |
make | |
# java -classpath .:MeCab.jar test # TODO: FIX ME | |
working-directory: mecab/java |