1
0
mirror of https://github.com/DarklightGames/io_scene_psk_psa.git synced 2024-11-24 06:50:13 +01:00

Update main.yml

This commit is contained in:
Colin Basnett 2024-06-09 12:06:59 -07:00 committed by GitHub
parent 615983aa78
commit 1384e9daf6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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: $BLENDER_VERSION.tar.xz
BLENDER_URL: https://cdn.builder.blender.org/download/daily/$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: Set derived environment variables
run: |
echo "BLENDER_FILENAME=${{ env.BLENDER_VERSION }}.tar.xz" >> $GITHUB_ENV
echo "BLENDER_URL=https://cdn.builder.blender.org/download/daily/${{ env.BLENDER_VERSION }}.tar.xz" >> $GITHUB_ENV
- name: Install Blender Dependencies - name: Install Blender Dependencies
run: | run: |
sudo apt-get install libxxf86vm-dev -y apt install libxxf86vm-dev -y
sudo apt-get install libxfixes3 -y apt install libxfixes3 -y
sudo apt-get install libxi-dev -y apt install libxi-dev -y
sudo apt-get install libxkbcommon-x11-0 -y apt install libxkbcommon-x11-0 -y
sudo apt-get install libgl1-mesa-glx -y apt install libgl1-mesa-glx -y
- name: Download Blender - name: Download Blender
run: | run: |
wget ${{ env.BLENDER_URL }} wget $BLENDER_URL
tar -xvzf ${{ env.BLENDER_FILENAME }} tar -xvzf $BLENDER_FILENAME
rm -rf ${{ env.BLENDER_FILENAME }} rm -rf $BLENDER_FILENAME
- uses: actions/checkout@v3 - uses: actions/checkout@v3