mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-06 17:09:06 +01:00
34 lines
843 B
YAML
34 lines
843 B
YAML
name: BuildStoryEditor-Linux
|
|
|
|
on:
|
|
workflow_dispatch: {}
|
|
push:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
build_win:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: recursive
|
|
- name: Install packages
|
|
run : |
|
|
sudo apt-get update -qq
|
|
sudo apt-get install build-essential
|
|
sudo apt-get install cmake
|
|
sudo apt install mesa-common-dev libgl1-mesa-dev libgles2-mesa-dev
|
|
- name: build
|
|
working-directory: ./story-editor
|
|
run : |
|
|
mkdir build
|
|
cd build
|
|
cmake -DCMAKE_BUILD_TYPE=Release ..
|
|
ls
|
|
- name: package_setup
|
|
working-directory: ./story-editor
|
|
run : |
|
|
make package
|
|
ls
|
|
|