mirror of
https://github.com/DarklightGames/io_scene_psk_psa.git
synced 2024-11-23 22:40:59 +01:00
Update main.yml
This commit is contained in:
parent
615983aa78
commit
1384e9daf6
39
.github/workflows/main.yml
vendored
39
.github/workflows/main.yml
vendored
@ -7,25 +7,26 @@ on:
|
||||
pull_request:
|
||||
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:
|
||||
configurator:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
BLENDER_VERSION: blender-4.2.0-beta+v42.d19d23e91f65-linux.x86_64-release
|
||||
steps:
|
||||
- name: Install Blender Dependencies
|
||||
run: |
|
||||
sudo apt-get install libxxf86vm-dev -y
|
||||
sudo apt-get install libxfixes3 -y
|
||||
sudo apt-get install libxi-dev -y
|
||||
sudo apt-get install libxkbcommon-x11-0 -y
|
||||
sudo apt-get install libgl1-mesa-glx -y
|
||||
- name: Download Blender
|
||||
run: |
|
||||
wget ${{ env.BLENDER_URL }}
|
||||
tar -xvzf ${{ env.BLENDER_FILENAME }}
|
||||
rm -rf ${{ env.BLENDER_FILENAME }}
|
||||
- uses: actions/checkout@v3
|
||||
- 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
|
||||
run: |
|
||||
apt install libxxf86vm-dev -y
|
||||
apt install libxfixes3 -y
|
||||
apt install libxi-dev -y
|
||||
apt install libxkbcommon-x11-0 -y
|
||||
apt install libgl1-mesa-glx -y
|
||||
- name: Download Blender
|
||||
run: |
|
||||
wget $BLENDER_URL
|
||||
tar -xvzf $BLENDER_FILENAME
|
||||
rm -rf $BLENDER_FILENAME
|
||||
- uses: actions/checkout@v3
|
||||
|
Loading…
Reference in New Issue
Block a user