diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml new file mode 100644 index 0000000000000000000000000000000000000000..33d05f420b271119a6426b27ea4da459e1604353 --- /dev/null +++ b/.github/workflows/linux.yml @@ -0,0 +1,33 @@ +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