Skip to content

Commit

Permalink
Add github workflow for building Dear ImGui
Browse files Browse the repository at this point in the history
  • Loading branch information
borodust committed Jun 9, 2021
1 parent 504a078 commit b57e903
Show file tree
Hide file tree
Showing 6 changed files with 1,520 additions and 3,067 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build
on:
push:
tags:
- "v*.*.*"
jobs:
Build:
runs-on: ubuntu-18.04
steps:
- name: Check Out Everything
id: checkout
uses: actions/checkout@v2
with:
submodules: true
- name: Install LLVM And Clang
uses: KyleMayes/install-llvm-action@v1
with:
version: "9.0"
- name: Build Binaries
run: |
cd ${{ github.workspace }}/src/lib/ && ./build.sh desktop
- name: Publish Binaries
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: |
src/lib/build/desktop/libimgui.clawed.so
Loading

0 comments on commit b57e903

Please sign in to comment.