[ADD] : add Entities pane #7
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: Linux | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build_Linux_Ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: checkout submodules | |
run : git submodule update --init --recursive | |
- name: Install OpenGL lib / Requirement for Glfw3 | |
run : sudo apt-get update && sudo apt-get install libgl1-mesa-dev libx11-dev libxi-dev libxrandr-dev libxinerama-dev libxcursor-dev | |
- name: configure | |
run: mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DPLUGIN_ENABLE_LCL_BROKER=ON | |
- name: build | |
run: cmake --build build | |
- name: upload artifact | |
uses: actions/upload-artifact@v1 | |
with: | |
name: CashMe_Linux_x32 | |
path: bin/CashMe_Linux_x32 |