Skip to content
Snippets Groups Projects
Verified Commit e7c9cc80 authored by Tobias Frisch's avatar Tobias Frisch
Browse files

Add Github workflow

parent 085c9a6c
No related branches found
No related tags found
No related merge requests found
name: Linux Build
on:
push:
branches: [ develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout the current branch
uses: actions/checkout@v3
- name: Initialize LFS
run: |
git lfs install
- name: Load submodules
run: |
git submodule init
git submodule update
- name: Install dependencies
run: |
sudo apt-get -qq update
sudo apt-get -qq install libvulkan-dev libvulkan1
- name: Build framework
run: |
mkdir build
cd build
cmake ..
make -j $(nproc)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment