Update linux-build.yaml #7
This file contains 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: CMake on a single platform | ||
on: | ||
push: | ||
branches: [ "goo-engine-main" ] | ||
pull_request: | ||
branches: [ "goo-engine-main" ] | ||
env: | ||
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | ||
BUILD_TYPE: Release | ||
jobs: | ||
build: | ||
# The CMake configure and build commands are platform agnostic and should work equally well on Linux or Mac. | ||
# You can convert this to a matrix build if you need cross-platform coverage. | ||
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install dependencies | ||
run: | | ||
sudo apt update | ||
sudo apt install -y cmake git ninja-build | ||
- name: Clone Blender repository | ||
- run: | | ||
mkdir -p ${{ github.workspace }}/blender | ||
cd ${{ github.workspace }}/blender | ||
git clone https://github.com/blender/blender.git . | ||
- name: Configure CMake | ||
run: | | ||
cd ${{ github.workspace }}/blender | ||
mkdir -p build | ||
cd build | ||
cmake -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_SYSTEM_NAME=Linux -G "Ninja" .. | ||
- name: Build | ||
run: | | ||
cd ${{ github.workspace }}/blender/build | ||
cmake --build . --config ${{env.BUILD_TYPE}} | ||
- name: Create AppImage | ||
run: | | ||
cd ${{ github.workspace }}/blender/build | ||
sudo apt install -y appimagetool | ||
appimagetool blender ../blender.appimage | ||
- name: Upload artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: blender-appimage | ||
path: ${{ github.workspace }}/blender/blender.appimage |