Merge pull request #150 from CultureFoundryCA/master #78
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: Build foma | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
build-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: dependencies | |
run: | | |
sudo apt-get -qy update | |
sudo apt-get -qfy install --no-install-recommends cmake | |
- name: build | |
run: cd foma && cmake . && make -j | |
- name: Archive production artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: dist-linux | |
path: | | |
foma/foma | |
foma/flookup | |
foma/cgflookup | |
foma/libfoma.so.* | |
foma/README* | |
foma/CHANGELOG | |
foma/COPYING | |
build-windows: | |
runs-on: windows-latest | |
defaults: | |
run: | |
shell: msys2 {0} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: msys2/setup-msys2@v2 | |
with: | |
msystem: MINGW64 | |
update: true | |
install: cmake gcc bison flex make zlib-devel libreadline-devel ncurses-devel | |
- name: Compile Foma | |
run: cd foma && cmake . && make -j | |
- name: Copy MINGW64 DLLs to build directory | |
run: cp /usr/bin/{msys-2.0.dll,msys-ncursesw6.dll,msys-readline8.dll,msys-z.dll} foma | |
- name: Archive production artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: dist-windows | |
path: | | |
foma/foma.exe | |
foma/flookup.exe | |
foma/cgflookup.exe | |
foma/*.dll | |
foma/README* | |
foma/CHANGELOG | |
foma/COPYING | |
build-macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Compile Foma | |
run: brew install bison cmake && export PATH="$(brew --prefix bison)/bin:$PATH" && cd foma && cmake . && make -j | |
- name: Archive production artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: dist-macos | |
path: | | |
foma/foma | |
foma/cgflookup | |
foma/flookup | |
foma/libfoma.a | |
foma/libfoma.*.dylib | |
foma/README* | |
foma/CHANGELOG | |
foma/COPYING |