Skip to content

Commit

Permalink
Update linux-build.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
tilsgee authored Jun 29, 2024
1 parent 8c981e6 commit 03e7ed0
Showing 1 changed file with 32 additions and 32 deletions.
64 changes: 32 additions & 32 deletions .github/workflows/linux-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,39 +18,39 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3

- name: Install dependencies
run: |
sudo apt update
sudo apt install -y cmake git ninja-build
- 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
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

0 comments on commit 03e7ed0

Please sign in to comment.