Intel GPU support (xpu) #1248
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: Ubuntu CI | |
| permissions: {} | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| ubuntu: | |
| permissions: | |
| contents: read | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| steps: | |
| - name: Checkout source code | |
| uses: actions/checkout@v4 | |
| - name: Set up Python version | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| # open3d / open3d_cpu wheels link EGL for offscreen rendering (GUI=ON). | |
| - name: Install Open3D runtime deps | |
| run: sudo apt-get update && sudo apt-get install --yes libegl1 | |
| - name: Run Open3D-ML tests (CPU wheel) | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| run: ./ci/run_ci.sh cpu |