From 3195ab132bcd956c95f52baca65a3c8881c0edb6 Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Tue, 27 Aug 2024 20:20:51 -0700 Subject: [PATCH] fix build --- .github/workflows/openpilot.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/openpilot.yaml b/.github/workflows/openpilot.yaml index e247d65b9..ad2c89371 100644 --- a/.github/workflows/openpilot.yaml +++ b/.github/workflows/openpilot.yaml @@ -16,12 +16,12 @@ jobs: arch: ${{ fromJson( ((github.repository == 'commaai/plotjuggler') && ((github.event_name != 'pull_request') || - (github.event.pull_request.head.repo.full_name == 'commaai/plotjuggler'))) && '["x86_64", "aarch64"]' || '["x86_64"]' ) }} + (github.event.pull_request.head.repo.full_name == 'commaai/plotjuggler'))) && '["x86_64", "aarch64"]' || '["x86_64"]' ) }} runs-on: ${{ (matrix.arch == 'aarch64') && 'buildjet-4vcpu-ubuntu-2204-arm' || 'ubuntu-20.04' }} steps: - uses: actions/checkout@v2 with: - submodules: true + submodules: recursive - name: build run: ./build.sh - name: zip plugins @@ -42,7 +42,7 @@ jobs: steps: - uses: actions/checkout@v2 with: - submodules: true + submodules: recursive - uses: actions/setup-python@v2 with: python-version: '3.11.x'