Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 14 additions & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,25 +22,27 @@ jobs:
# Do not stop other jobs if one fails
fail-fast: false
matrix:
environment:
mitsuba:
- {
os: "ubuntu-latest",
mitsuba-version: "3.5.0"
version: "3.6.0"
}
environment:
- {
os: "windows-latest",
mitsuba-version: "3.5.0"
os: "ubuntu-latest",
}
# - {
# os: "windows-latest",
# }
blender:
- {
version: "3.6"
}
- {
version: "4.2"
}
- {
version: "4.4"
}
# - {
# version: "4.2"
# }
# - {
# version: "4.4"
# }
steps:
- name: Git checkout
uses: actions/checkout@v2
Expand Down Expand Up @@ -76,7 +78,7 @@ jobs:
./$BLENDER_PYTHON -m ensurepip
./$BLENDER_PYTHON -m pip install -U pip
./$BLENDER_PYTHON -m pip install --upgrade pytest pytest-cov
./$BLENDER_PYTHON -m pip install mitsuba==${{ matrix.environment.mitsuba-version }} --force-reinstall
./$BLENDER_PYTHON -m pip install mitsuba==${{ matrix.mitsuba.version }} --force-reinstall

- name: Run Addon test suite
shell: bash
Expand Down
Loading