Yongmin Hong
8523bec70c
Summary: Use submodules to build them. Signed-off-by: Yongmin Hong <revi@omglol.email> Test Plan: `arc land` and watch GitHub Actions run. Reviewers: O1 revi & automations, revi Reviewed By: O1 revi & automations, revi Tags: #docker, #github_actions Differential Revision: https://issuetracker.revi.xyz/D526
86 lines
2.7 KiB
YAML
86 lines
2.7 KiB
YAML
---
|
|
name: 'Build container images'
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'container/**'
|
|
- '.github/workflows/build-container.yml'
|
|
tags-ignore:
|
|
- 'eslint-config@v*'
|
|
- 'prettier-config@v*'
|
|
pull_request:
|
|
paths:
|
|
- 'container/**'
|
|
- '.github/workflows/build-container.yml'
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
REGISTRY: ghcr.io
|
|
|
|
jobs:
|
|
lighthouse-ci-build:
|
|
name: 'Build and publish lhci to GitHub Container Registry'
|
|
env:
|
|
IMAGE_NAME: ${{ github.repository }}/lighthouse-ci-server
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
attestations: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: 'Checkout the repository'
|
|
uses: actions/checkout@v4
|
|
- name: 'Log in to the Container registry'
|
|
uses: docker/login-action@v3.2.0
|
|
with:
|
|
registry: ${{ env.REGISTRY }}
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: 'Extract metadata (tags, labels) for Docker'
|
|
id: meta
|
|
uses: docker/metadata-action@v5.5.1
|
|
with:
|
|
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
|
- name: 'Build and push Docker image'
|
|
id: push
|
|
uses: docker/build-push-action@v6.3.0
|
|
with:
|
|
context: ${{ github.workspace }}/container/lighthouse-ci-server
|
|
file: ${{ github.workspace }}/container/lighthouse-ci-server/Dockerfile
|
|
push: true
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
copybara-build:
|
|
name: 'Build and publish copybara to GitHub Container Registry'
|
|
env:
|
|
IMAGE_NAME: ${{ github.repository }}/copybara
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
attestations: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout the repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: 'true'
|
|
- name: 'Log in to the Container registry'
|
|
uses: docker/login-action@v3.2.0
|
|
with:
|
|
registry: ${{ env.REGISTRY }}
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: 'Extract metadata (tags, labels) for Docker'
|
|
id: meta
|
|
uses: docker/metadata-action@v5.5.1
|
|
with:
|
|
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
|
- name: 'Build and push Docker image'
|
|
id: push
|
|
uses: docker/build-push-action@v6.3.0
|
|
with:
|
|
context: ${{ github.workspace }}/container/copybara
|
|
file: ${{ github.workspace }}/container/copybara/Dockerfile
|
|
push: true
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|