Skip to content

Commit

Permalink
now wayland!
Browse files Browse the repository at this point in the history
  • Loading branch information
liz3 committed Dec 9, 2023
1 parent b49919d commit 0a4a05f
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,31 @@ jobs:
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: dist
name: ledit_linux_x86_64_x11
path: |
build/ledit
build-project:
name: Build Project
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
with:
submodules: true
- name: install deps
run: |
sudo apt-get update && sudo apt-get install -y build-essential cmake git wayland-protocols --no-install-recommends
- name: Build Project
run: |
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release -DGLFW_USE_WAYLAND=ON ..
make
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: ledit_linux_x86_64_wayland
path: |
build/ledit

0 comments on commit 0a4a05f

Please sign in to comment.