Skip to content

Commit

Permalink
Add win32 build to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
arabine committed Mar 10, 2024
1 parent 8633746 commit 19c77fa
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions .github/workflows/story_editor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@ on:
branches:
- main
jobs:
build_win:
build_linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
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
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 : |
Expand All @@ -30,4 +30,17 @@ jobs:
run : |
make package
ls
build_win32:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install packages
run : |
sudo apt-get update -qq
sudo apt-get install docker.io
- name: build
working-directory: ./story-editor
run : |
./build_win32.sh

0 comments on commit 19c77fa

Please sign in to comment.