Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Screencast-Keys CI | |
on: | |
push: | |
branches: | |
- master | |
- 'run-ci/**' | |
tags: | |
- 'v*' | |
pull_request: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 7 * * *" | |
jobs: | |
build: | |
name: Test add-on | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
blender_version: | |
[ | |
"2.80", "2.81", "2.82", "2.83", | |
"2.90", "2.91", "2.92", "2.93", | |
"3.0", "3.1", "3.2", "3.3", "3.4", "3.5", "3.6", | |
"4.0" | |
] | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.7" | |
- name: Get required packages for Blender | |
run: | | |
sudo apt-get update -qq | |
sudo apt-get install -y blender wget python3 python3-pip zip libglu1 libfreetype6 libgl1-mesa-dev | |
- name: Get required pip packages | |
run: pip3 install -r requirements.txt | |
- name: Download Blender | |
run: bash tools/download_blender.sh ${{ matrix.blender_version }} blender-bin | |
- name: Copy add-on to Blender add-on's directory | |
run: cp -r src/screencast_keys blender-bin/blender-v${{ matrix.blender_version }}-bin/${{ matrix.blender_version }}/scripts/addons | |
- name: Run add-on unittest | |
run: blender-bin/blender-v${{ matrix.blender_version }}-bin/blender --factory-startup --background -noaudio --python tests/python/run_tests.py | |
env: | |
SK_CONSOLE_MODE: true |