From c75b84e596f6f20556a166c19a3c0b7b0b2579bd Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Tue, 19 Jan 2021 20:02:08 -0800 Subject: [PATCH] remove docker prebuilt CI job --- .github/workflows/test.yaml | 24 +----------------------- 1 file changed, 1 insertion(+), 23 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 17de278936..3cba820243 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -1,4 +1,4 @@ -name: openpilot tests +name: tests on: push: branches-ignore: @@ -133,28 +133,6 @@ jobs: $DOCKER_LOGIN docker push $DOCKER_REGISTRY/$BASE_IMAGE:latest - docker_push_prebuilt: - name: docker push prebuilt - runs-on: ubuntu-20.04 - timeout-minutes: 50 - if: github.event_name == 'status' && github.repository == 'commaai/openpilot' - needs: [static_analysis, unit_tests, process_replay, test_longitudinal, test_car_models] - env: - IMAGE_NAME: openpilot-prebuilt - steps: - - uses: actions/checkout@v2 - with: - submodules: true - - name: Build Docker image - run: | - eval "$BUILD" - docker pull $DOCKER_REGISTRY/$IMAGE_NAME:latest || true - docker build --cache-from $DOCKER_REGISTRY/$IMAGE_NAME:latest -t $DOCKER_REGISTRY/$IMAGE_NAME:latest -f Dockerfile.openpilot . - - name: Push to container registry - run: | - $DOCKER_LOGIN - docker push $DOCKER_REGISTRY/$IMAGE_NAME:latest - static_analysis: name: static analysis runs-on: ubuntu-20.04