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:
parent
615983aa78
commit
1384e9daf6
29
.github/workflows/main.yml
vendored
29
.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: $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
|
||||||
|
Loading…
Reference in New Issue
Block a user