Skip to content
Merged
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
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-22.04, macos-14, windows-2022]
sofa_branch: [v25.06]
sofa_branch: [master]

steps:
- name: Setup SOFA and environment
Expand Down Expand Up @@ -68,6 +68,7 @@ jobs:
echo "artifact_name=$artifact_name" >> $env:GITHUB_OUTPUT

- name: Create artifact
id: create-artifact
uses: actions/upload-artifact@v4.4.0
with:
name: ${{ steps.sanitize.outputs.artifact_name }}
Expand Down Expand Up @@ -101,6 +102,7 @@ jobs:
fi

- name: Fetch, install and run Regression_test
id: regression-test
if: always()
shell: bash
run: |
Expand All @@ -115,6 +117,7 @@ jobs:
# Setup mandatory env vars
export REGRESSION_SCENES_DIR="${WORKSPACE_SRC_PATH}/examples"
export REGRESSION_REFERENCES_DIR="${WORKSPACE_SRC_PATH}/regression/references"
export PYTHONPATH=$SOFA_ROOT/plugins/SofaPython3/lib/python3/site-packages
# Run regression test bench
${SOFA_ROOT}/bin/Regression_test${{ steps.sofa.outputs.exe }}
else
Expand Down Expand Up @@ -145,7 +148,8 @@ jobs:
with:
name: ${{ github.ref_name }}
tag_name: release-${{ github.ref_name }}
fail_on_unmatched_files: true
fail_on_unmatched_files: false
target_commitish: ${{ github.sha }}
files: |
artifacts/InfinyToolkit_*_Linux.zip
artifacts/InfinyToolkit_*_Windows.zip
Expand Down
Loading