Compare commits
1 Commits
7.1.2
...
blender-4.
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
275f246458 |
39
.github/workflows/main.yml
vendored
39
.github/workflows/main.yml
vendored
@@ -7,25 +7,26 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
branches: [ "main" ]
|
branches: [ "main" ]
|
||||||
|
|
||||||
env:
|
|
||||||
BLENDER_VERSION: blender-4.2.0-beta+v42.d19d23e91f65-linux.x86_64-release
|
|
||||||
BLENDER_FILENAME: ${{ env.BLENDER_VERSION }}.tar.xz
|
|
||||||
BLENDER_URL: https://cdn.builder.blender.org/download/daily/${{ env.BLENDER_FILENAME }}
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
configurator:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
BLENDER_VERSION: blender-4.2.0-beta+v42.d19d23e91f65-linux.x86_64-release
|
||||||
steps:
|
steps:
|
||||||
- name: Install Blender Dependencies
|
- name: Set derived environment variables
|
||||||
run: |
|
run: |
|
||||||
apt install libxxf86vm-dev -y
|
echo "BLENDER_FILENAME=${{ env.BLENDER_VERSION }}.tar.xz" >> $GITHUB_ENV
|
||||||
apt install libxfixes3 -y
|
echo "BLENDER_URL=https://cdn.builder.blender.org/download/daily/${{ env.BLENDER_VERSION }}.tar.xz" >> $GITHUB_ENV
|
||||||
apt install libxi-dev -y
|
- name: Install Blender Dependencies
|
||||||
apt install libxkbcommon-x11-0 -y
|
run: |
|
||||||
apt install libgl1-mesa-glx -y
|
apt install libxxf86vm-dev -y
|
||||||
- name: Download Blender
|
apt install libxfixes3 -y
|
||||||
run: |
|
apt install libxi-dev -y
|
||||||
wget ${{ env.BLENDER_URL }}
|
apt install libxkbcommon-x11-0 -y
|
||||||
tar -xvzf ${{ env.BLENDER_FILENAME }}
|
apt install libgl1-mesa-glx -y
|
||||||
rm -rf ${{ env.BLENDER_FILENAME }}
|
- name: Download Blender
|
||||||
- uses: actions/checkout@v3
|
run: |
|
||||||
|
wget $BLENDER_URL
|
||||||
|
tar -xvzf $BLENDER_FILENAME
|
||||||
|
rm -rf $BLENDER_FILENAME
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|||||||
Reference in New Issue
Block a user