Adding prefab server build to ci

This commit is contained in:
Eric Froemling 2020-10-12 10:35:28 -07:00
parent f1607965a6
commit fd84978843

View File

@ -11,8 +11,8 @@ on:
jobs: jobs:
# We run most of our testing on linux but it should apply to mac too; # We run most of our testing only on linux but it should apply to mac too;
# we can always add an explicit mac job if it seems worthwhile. # we can always add an explicit mac job later if it seems worthwhile.
ci_unix: ci_unix:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
steps: steps:
@ -25,10 +25,12 @@ jobs:
run: tools/pcommand install_pip_reqs run: tools/pcommand install_pip_reqs
- name: Run checks and tests - name: Run checks and tests
run: make -j2 check test run: make -j2 check test
- name: Prefab server build
run: make prefab-server-debug-build
# Most of our toolset doesn't work on raw windows (outside of WSL). # Most of our toolset doesn't work on raw windows (outside of WSL).
# However, it's nice to at least run unit tests there since some behavior # However, it's nice to at least run unit tests there since some behavior
# (filesystem, etc) can vary significantly. # (filesystem, etc) can vary significantly between windows and linux/apple.
ci_windows: ci_windows:
runs-on: windows-latest runs-on: windows-latest
steps: steps: