added prim_inf_cert/dual_inf_cert names to result object #363
Workflow file for this run
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: Build CUDA Linux | |
| on: | |
| push: | |
| branches: | |
| - master | |
| tags: | |
| - '*' | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| build_wheels: | |
| name: Build wheel on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest] | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: Build wheels | |
| uses: pypa/cibuildwheel@v2.23 | |
| with: | |
| package-dir: backend/cuda | |
| config-file: backend/cuda/cibuildwheel.toml | |
| output-dir: wheelhouse | |
| - name: Upload artifacts to github | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: wheels-cuda-${{ matrix.os }} | |
| path: ./wheelhouse |