Create main.yml
This commit is contained in:
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
|
||||||
Reference in New Issue
Block a user