Skip to content

Commit

Permalink
fixup again
Browse files Browse the repository at this point in the history
  • Loading branch information
mwestphal committed Mar 17, 2024
1 parent 440a4e3 commit f79c4c3
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/actions/generic-ci/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ runs:
# https://github.com/f3d-app/f3d/issues/1276
- name: Check F3D_PLUGINS_PATH using plugin example
if: |
inputs.vtk_version != 'v9.0.0' && inputs.vtk_version != 'v9.1.0' && inputs.vtk_version != 'v9.2.6' &&
inputs.vtk_version != 'v9.0.0' && inputs.vtk_version != 'v9.1.0' && inputs.vtk_version != 'v9.2.6' &&
inputs.cpu != 'arm64' &&
inputs.static_label == 'no-static'
shell: bash
Expand All @@ -345,6 +345,15 @@ runs:
working-directory: ${{github.workspace}}/install
run: |
${{ env.F3D_BIN_PATH }} ../source/testing/data/suzanne.obj --output=output/install_output.png --ref=../source/.github/baselines/install_output.png --resolution=300,300 --verbose
- name: Check Install plugins
if: |
inputs.vtk_version != 'v9.0.0' && inputs.vtk_version != 'v9.1.0' && inputs.vtk_version != 'v9.2.6'
&& inputs.cpu != 'arm64'
&& inputs.static_label == 'no-static'
shell: bash
working-directory: ${{github.workspace}}/install
run: |
${{ env.F3D_BIN_PATH }} ../source/examples/plugins/example-plugin/data.expl --output=../install_example_plugin_output.png --ref=../source/.github/baselines/install_example_plugin_output.png --resolution=300,300 --verbose
- name: Upload Tests Install Artifact
Expand Down

0 comments on commit f79c4c3

Please sign in to comment.