Skip to content

Commit

Permalink
Merge branch 'master' of github.com:Pusnow/mecab-ko-msvc
Browse files Browse the repository at this point in the history
  • Loading branch information
Pusnow committed Apr 23, 2023
2 parents b8dabe5 + 8b74e6d commit e52c417
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,23 +35,23 @@ jobs:
run: sudo apt-get update && sudo apt-get install ${{ matrix.crossbuild }} qemu-user-static
if: matrix.name == 'linux' && matrix.arch != 'x86_64'
- name: Configure (Windows)
run: meson setup --prefix=C:\mecab -Db_vscrt=static_from_buildtype -Dbuildtype=debugoptimized -Dbuild_dic=false builddir
run: meson setup --prefix=C:\mecab -Db_vscrt=static_from_buildtype -Dbuildtype=debugoptimized -Dbuild_dic=false -Dbuild_python=true -Dbuild_java=true builddir
working-directory: ${{ github.workspace }}
if: matrix.name == 'windows'
- name: Configure (macOS)
run: meson setup --prefix=/opt/mecab -Dbuildtype=debugoptimized -Dbuild_dic=false builddir
run: meson setup --prefix=/opt/mecab -Dbuildtype=debugoptimized -Dbuild_dic=false -Dbuild_python=true -Dbuild_java=true builddir
working-directory: ${{ github.workspace }}
if: matrix.name == 'macos' && matrix.arch == 'x86_64'
- name: Configure (Crossbuild macOS)
run: meson setup --prefix=/opt/mecab -Dbuildtype=debugoptimized --cross-file=cross/${{ matrix.arch }}-darwin-clang.txt -Dbuild_dic=false builddir
run: meson setup --prefix=/opt/mecab -Dbuildtype=debugoptimized --cross-file=cross/${{ matrix.arch }}-darwin-clang.txt -Dbuild_dic=false -Dbuild_python=true -Dbuild_java=true builddir
working-directory: ${{ github.workspace }}
if: matrix.name == 'macos' && matrix.arch != 'x86_64'
- name: Configure (Linux)
run: meson setup --prefix=/opt/mecab -Dbuildtype=debugoptimized -Dbuild_static=true -Dbuild_dic=true builddir
run: meson setup --prefix=/opt/mecab -Dbuildtype=debugoptimized -Dbuild_static=true -Dbuild_dic=true -Dbuild_python=true -Dbuild_java=true builddir
working-directory: ${{ github.workspace }}
if: matrix.name == 'linux' && matrix.arch == 'x86_64'
- name: Configure (Crossbuild Linux)
run: meson setup --prefix=/opt/mecab -Dbuildtype=debugoptimized -Dbuild_static=true --cross-file=cross/${{ matrix.arch }}-linux-gnu.txt -Dbuild_dic=false builddir
run: meson setup --prefix=/opt/mecab -Dbuildtype=debugoptimized -Dbuild_static=true --cross-file=cross/${{ matrix.arch }}-linux-gnu.txt -Dbuild_dic=false -Dbuild_python=true -Dbuild_java=true builddir
working-directory: ${{ github.workspace }}
env:
QEMU_LD_PREFIX: /usr/${{ matrix.arch }}-linux-gnu/
Expand Down

0 comments on commit e52c417

Please sign in to comment.