Fix/SK-1792 | Fix start_splitlearning_session call #2461
This file contains hidden or 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: "integration tests" | |
| on: | |
| push: | |
| paths-ignore: | |
| - 'docs/**' | |
| - '.github/**' | |
| branches: | |
| - master | |
| - develop | |
| - "release/**" | |
| pull_request: | |
| paths-ignore: | |
| - 'docs/**' | |
| - '.github/**' | |
| branches: | |
| - "**" | |
| workflow_dispatch: | |
| jobs: | |
| integration-tests: | |
| strategy: | |
| matrix: | |
| to_test: | |
| - "mnist-keras numpyhelper" | |
| - "mnist-pytorch numpyhelper" | |
| - "server-functions numpyhelper" | |
| python_version: ["3.10", "3.11", "3.12"] | |
| os: | |
| - ubuntu-24.04 | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python_version }} | |
| - name: run ${{ matrix.to_test }} | |
| run: .ci/tests/examples/run.sh ${{ matrix.to_test }} | |
| # - name: run ${{ matrix.to_test }} prediction | |
| # run: .ci/tests/examples/run_prediction.sh ${{ matrix.to_test }} | |
| # if: ${{ matrix.os != 'macos-11' && matrix.to_test == 'mnist-keras keras' }} # example available for Keras | |
| - name: print logs api-server | |
| if: failure() | |
| run: .ci/tests/examples/print_logs.sh api-server ${{ matrix.to_test }} | |
| - name: print logs combiner | |
| if: failure() | |
| run: .ci/tests/examples/print_logs.sh combiner ${{ matrix.to_test }} | |
| - name: print logs client | |
| if: failure() | |
| run: .ci/tests/examples/print_logs.sh client ${{ matrix.to_test }} | |
| - name: print logs mongo | |
| if: failure() | |
| run: .ci/tests/examples/print_logs.sh mongo ${{ matrix.to_test }} | |
| - name: print logs minio | |
| if: failure() | |
| run: .ci/tests/examples/print_logs.sh minio ${{ matrix.to_test }} |