From 0fad2ffcac7754b888b64fd5a2c24280233ebb58 Mon Sep 17 00:00:00 2001 From: Jason Wen Date: Sat, 6 Sep 2025 15:55:53 -0400 Subject: [PATCH] docker img --- .github/workflows/badges.yaml | 2 +- .github/workflows/release.yaml | 2 +- .github/workflows/repo-maintenance.yaml | 4 ++-- .github/workflows/selfdrive_tests.yaml | 2 +- Dockerfile.sunnypilot | 2 +- release/ci/docker_common_sp.sh | 4 ++-- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/badges.yaml b/.github/workflows/badges.yaml index 3019ba9cba..12d534968e 100644 --- a/.github/workflows/badges.yaml +++ b/.github/workflows/badges.yaml @@ -5,7 +5,7 @@ on: workflow_dispatch: env: - BASE_IMAGE: sunnypilot-base + BASE_IMAGE: sunnypilot-tici-base DOCKER_REGISTRY: ghcr.io/sunnypilot RUN: docker run --shm-size 2G -v $PWD:/tmp/openpilot -w /tmp/openpilot -e PYTHONPATH=/tmp/openpilot -e NUM_JOBS -e JOB_ID -e GITHUB_ACTION -e GITHUB_REF -e GITHUB_HEAD_REF -e GITHUB_SHA -e GITHUB_REPOSITORY -e GITHUB_RUN_ID -v $GITHUB_WORKSPACE/.ci_cache/scons_cache:/tmp/scons_cache -v $GITHUB_WORKSPACE/.ci_cache/comma_download_cache:/tmp/comma_download_cache -v $GITHUB_WORKSPACE/.ci_cache/openpilot_cache:/tmp/openpilot_cache $DOCKER_REGISTRY/$BASE_IMAGE:latest /bin/bash -c diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5206a91a25..a88b6b8734 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -10,7 +10,7 @@ jobs: env: ImageOS: ubuntu24 container: - image: ghcr.io/sunnypilot/sunnypilot-base:latest + image: ghcr.io/sunnypilot/sunnypilot-tici-base:latest runs-on: ubuntu-latest if: github.repository == 'sunnypilot/sunnypilot' permissions: diff --git a/.github/workflows/repo-maintenance.yaml b/.github/workflows/repo-maintenance.yaml index ae867e5109..4663d5101b 100644 --- a/.github/workflows/repo-maintenance.yaml +++ b/.github/workflows/repo-maintenance.yaml @@ -6,7 +6,7 @@ on: workflow_dispatch: env: - BASE_IMAGE: sunnypilot-base + BASE_IMAGE: sunnypilot-tici-base BUILD: release/ci/docker_build_sp.sh base RUN: docker run --shm-size 2G -v $PWD:/tmp/openpilot -w /tmp/openpilot -e CI=1 -e PYTHONWARNINGS=error -e FILEREADER_CACHE=1 -e PYTHONPATH=/tmp/openpilot -e NUM_JOBS -e JOB_ID -e GITHUB_ACTION -e GITHUB_REF -e GITHUB_HEAD_REF -e GITHUB_SHA -e GITHUB_REPOSITORY -e GITHUB_RUN_ID -v $GITHUB_WORKSPACE/.ci_cache/scons_cache:/tmp/scons_cache -v $GITHUB_WORKSPACE/.ci_cache/comma_download_cache:/tmp/comma_download_cache -v $GITHUB_WORKSPACE/.ci_cache/openpilot_cache:/tmp/openpilot_cache $BASE_IMAGE /bin/bash -c @@ -36,7 +36,7 @@ jobs: name: package_updates runs-on: ubuntu-latest container: - image: ghcr.io/sunnypilot/sunnypilot-base:latest + image: ghcr.io/sunnypilot/sunnypilot-tici-base:latest if: github.repository == 'sunnypilot/sunnypilot' steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/selfdrive_tests.yaml b/.github/workflows/selfdrive_tests.yaml index cf85f1c0ce..97bcc61783 100644 --- a/.github/workflows/selfdrive_tests.yaml +++ b/.github/workflows/selfdrive_tests.yaml @@ -19,7 +19,7 @@ concurrency: env: PYTHONWARNINGS: error - BASE_IMAGE: sunnypilot-base + BASE_IMAGE: sunnypilot-tici-base AZURE_TOKEN: ${{ secrets.AZURE_COMMADATACI_OPENPILOTCI_TOKEN }} DOCKER_LOGIN: docker login ghcr.io -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }} diff --git a/Dockerfile.sunnypilot b/Dockerfile.sunnypilot index 88a226ad08..99fbef459c 100644 --- a/Dockerfile.sunnypilot +++ b/Dockerfile.sunnypilot @@ -1,4 +1,4 @@ -FROM ghcr.io/sunnypilot/sunnypilot-base:latest +FROM ghcr.io/sunnypilot/sunnypilot-tici-base:latest ENV PYTHONUNBUFFERED=1 diff --git a/release/ci/docker_common_sp.sh b/release/ci/docker_common_sp.sh index e8f515762a..097e5737f4 100755 --- a/release/ci/docker_common_sp.sh +++ b/release/ci/docker_common_sp.sh @@ -1,8 +1,8 @@ if [ "$1" = "base" ]; then - export DOCKER_IMAGE=sunnypilot-base + export DOCKER_IMAGE=sunnypilot-tici-base export DOCKER_FILE=Dockerfile.sunnypilot_base elif [ "$1" = "prebuilt" ]; then - export DOCKER_IMAGE=sunnypilot-prebuilt + export DOCKER_IMAGE=sunnypilot-tici-prebuilt export DOCKER_FILE=Dockerfile.sunnypilot else echo "Invalid docker build image: '$1'"