Skip to content
Open
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
15 changes: 14 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ jobs:
sofa_root: ${{ github.workspace }}/sofa
sofa_version: ${{ matrix.sofa_branch }}
sofa_scope: 'full'

- name: Checkout source code
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
path: ${{ env.WORKSPACE_SRC_PATH }}

Expand Down Expand Up @@ -80,6 +81,18 @@ jobs:
name: ${{ steps.sanitize.outputs.artifact_name }}
path: ${{ env.WORKSPACE_ARTIFACT_PATH }}


- name: Launch test
uses: bakpaul/sofa-test-action@wip_first_attempt
with:
sofa_root: ${{ github.workspace }}/sofa
sofa_version: master
src_dir: ${{ env.WORKSPACE_SRC_PATH }}
build_dir: ${{ env.WORKSPACE_BUILD_PATH }}
python_exe: ${{ steps.sofa.outputs.python_exe }}
output_dir: ${{ github.workspace }}/tests-results_dir
nb_parallel_threads: '4'

- name: Set env vars for tests
shell: bash
run: |
Expand Down
Loading