Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: setup matrix with curl setup.sh + op.sh #33158

Closed
wants to merge 21 commits into from
Closed
18 changes: 18 additions & 0 deletions .github/workflows/selfdrive_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,24 @@ jobs:
- name: Building openpilot
run: . .venv/bin/activate && scons -j$(nproc)

setup_all:
name: Setup openpilot on ${{ matrix.platform.name }}
runs-on: ${{ matrix.platform.runner }}
strategy:
fail-fast: false
matrix:
platform: [ {runner: "ubuntu-24.04", name: "Linux-x86_64"},
{runner: "namespace-profile-arm64-2x8", name: "Linux-aarch64"},
{runner: "macos-14", name: "MacOS-arm64"}]
exclude:
- {platform: {runner: "${{ (github.repository != 'commaai/openpilot' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != 'commaai/openpilot')) && 'namespace-profile-arm64-2x8' }}" }}

steps:
- name: Install openpilot
run: curl -fsSL openpilot.comma.ai | bash
env:
PYTHONWARNINGS: default

docker_push_multiarch:
name: docker push multiarch tag
runs-on: ubuntu-latest
Expand Down
Loading