mirror of
https://github.com/DarklightGames/io_scene_psk_psa.git
synced 2024-11-23 22:40:59 +01:00
Create main.yml
This commit is contained in:
parent
aa9fdca6cc
commit
27548979d5
30
.github/workflows/main.yml
vendored
Normal file
30
.github/workflows/main.yml
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
name: Verify Addon
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
pull_request:
|
||||
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:
|
||||
configurator:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- 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 ${{ env.BLENDER_URL }}
|
||||
tar -xvzf ${{ env.BLENDER_FILENAME }}
|
||||
rm -rf ${{ env.BLENDER_FILENAME }}
|
||||
- uses: actions/checkout@v3
|
Loading…
Reference in New Issue
Block a user