Skip to content

Remove an unused Passes include from CodeGen/RegUsageInfoPropagate.cpp #1

Remove an unused Passes include from CodeGen/RegUsageInfoPropagate.cpp

Remove an unused Passes include from CodeGen/RegUsageInfoPropagate.cpp #1

# This file defines an action that builds the various Docker images used to run
# libc++ CI whenever modifications to those Docker files are pushed to `main`.
#
# The images are pushed to the LLVM package registry at https://github.com/orgs/llvm/packages
# and tagged appropriately. The selection of which Docker image version is used by the libc++
# CI nodes at any given point is controlled from the workflow files themselves.
name: Build Docker images for libc++ CI
permissions:
contents: read
packages: write
on:
push:
branches:
- main
paths:
- 'libcxx/utils/ci/**'
- '.github/workflows/libcxx-build-containers.yml'
pull_request:
branches:
- main
paths:
- 'libcxx/utils/ci/**'
- '.github/workflows/libcxx-build-containers.yml'
jobs:
build-and-push:
runs-on: ubuntu-latest
if: github.repository_owner == 'llvm'
steps:
- uses: actions/checkout@v4
- name: Build the Linux builder image and the Android builder image
working-directory: libcxx/utils/ci
run:
- docker compose build actions-builder

Check failure on line 39 in .github/workflows/libcxx-build-containers.yml

View workflow run for this annotation

GitHub Actions / Build Docker images for libc++ CI

Invalid workflow file

The workflow is not valid. .github/workflows/libcxx-build-containers.yml (Line: 39, Col: 9): A sequence was not expected .github/workflows/libcxx-build-containers.yml (Line: 53, Col: 9): A sequence was not expected
- docker compose build android-buildkite-builder
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push the Linux builder image
if: github.event_name == 'push'
working-directory: libcxx/utils/ci
run:
- docker compose push actions-builder
env:
TAG: libcxx-linux-builder:${{ github.sha }}
- name: Push the Android builder image
if: github.event_name == 'push'
working-directory: libcxx/utils/ci
run:
- docker compose push android-buildkite-builder
env:
TAG: libcxx-android-builder:${{ github.sha }}