wpsimon09 is building the project #590
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build | |
| run-name: ${{ github.actor }} is building the project | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup Vulkan SDK | |
| uses: humbletim/[email protected] | |
| with: | |
| vulkan-query-version: 1.4.304.1 | |
| vulkan-components: Vulkan-Headers, Vulkan-Loader | |
| vulkan-use-cache: true | |
| - name: Check out repository code | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Notify repository has been cloned | |
| run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." | |
| - name: Install GLFW | |
| run: | | |
| sudo apt update | |
| sudo apt install -y libglfw3 libglfw3-dev | |
| - name: Install GLM | |
| run: sudo apt install -y libglm-dev | |
| - name: Build project | |
| run: sh build.sh |