This repository has been archived by the owner on May 1, 2024. It is now read-only.
prebuilt #8841
This file contains 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: prebuilt | |
on: | |
schedule: | |
- cron: '0 * * * *' | |
workflow_dispatch: | |
env: | |
BASE_IMAGE: openpilot-base | |
DOCKER_REGISTRY: ghcr.io/commaai | |
DOCKER_LOGIN: docker login ghcr.io -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }} | |
BUILD: | | |
DOCKER_BUILDKIT=1 docker build --pull --cache-to type=inline --cache-from $DOCKER_REGISTRY/$BASE_IMAGE:latest -t $DOCKER_REGISTRY/$BASE_IMAGE:latest -t $BASE_IMAGE:latest -f Dockerfile.openpilot_base . | |
jobs: | |
build_prebuilt: | |
name: build prebuilt | |
runs-on: ubuntu-20.04 | |
if: github.repository == 'commaai/openpilot' | |
env: | |
IMAGE_NAME: openpilot-prebuilt | |
steps: | |
- name: Wait for green check mark | |
if: ${{ github.event_name != 'workflow_dispatch' }} | |
uses: lewagon/wait-on-check-action@e2558238c09778af25867eb5de5a3ce4bbae3dcd | |
with: | |
ref: master | |
wait-interval: 30 | |
running-workflow-name: 'build prebuilt' | |
check-regexp: ^((?!.*(build master-ci).*).)*$ | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Build Docker image | |
run: | | |
eval "$BUILD" | |
DOCKER_BUILDKIT=1 docker build --pull --cache-to type=inline --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 | |
docker tag $DOCKER_REGISTRY/$IMAGE_NAME:latest $DOCKER_REGISTRY/$IMAGE_NAME:$GITHUB_SHA | |
docker push $DOCKER_REGISTRY/$IMAGE_NAME:$GITHUB_SHA |