* man/mlterm.1, README.ja: Updated. #83
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: ci | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: "setup linux build environment" | |
if: ${{ startsWith(matrix.os, 'ubuntu') }} | |
run: sudo apt update; sudo apt install -y libgtk-3-dev libvterm-dev libvte-2.91-dev libsdl2-dev libfribidi-dev libuim-dev libfcitx5core-dev libfcitx5gclient-dev libscim-dev libssh2-1-dev curl | |
- name: "setup macos build environment" | |
if: ${{ startsWith(matrix.os, 'macos') }} | |
run: brew install pkg-config | |
- name: "configure on linux" | |
if: ${{ startsWith(matrix.os, 'ubuntu') }} | |
run: (cd uitoolkit/wayland; sh ./rescanproto.sh); CFLAGS="-Wall -g -O2" ./configure --with-gui=xlib,fb,console,wayland,sdl2 | |
- name: "configure on macos" | |
if: ${{ startsWith(matrix.os, 'macos') }} | |
run: CFLAGS="-Wall -g -O2" ./configure --with-gui=quartz | |
- name: "build on linux" | |
if: ${{ startsWith(matrix.os, 'ubuntu') }} | |
run: make; sudo make install; (cd gtk; make; sudo make install); (cd libvterm; make; sudo make install) | |
- name: "build on macos" | |
if: ${{ startsWith(matrix.os, 'macos') }} | |
run: make; sudo make install |