prepare for releasing v0.999.10 #241
Workflow file for this run
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: mecab on MinGW | |
on: | |
pull_request: | |
paths: | |
- ".github/workflows/test-mingw.yml" | |
- "mecab/**" | |
push: | |
branches: | |
- main | |
paths: | |
- ".github/workflows/test-mingw.yml" | |
- "mecab/**" | |
jobs: | |
test: | |
name: Test | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: msys2/setup-msys2@v2 | |
with: | |
install: > | |
autoconf-wrapper | |
automake-wrapper | |
autotools | |
bison | |
make | |
mingw-w64-x86_64-gcc | |
mingw-w64-x86_64-libtool | |
mingw-w64-x86_64-libiconv | |
- name: configure | |
run: | | |
./autogen.sh | |
./configure --host=x86_64-w64-mingw32 | |
shell: msys2 {0} | |
working-directory: mecab | |
- name: make | |
run: | | |
make all | |
make check | |
make install | |
shell: msys2 {0} | |
working-directory: mecab | |
- name: build ipadic | |
run: | | |
./autogen.sh | |
./configure --with-charset=utf8 | |
make all | |
make install | |
shell: msys2 {0} | |
working-directory: mecab-ipadic |