forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge from main + post-merge fixes (20.11.2024)
- Loading branch information
Showing
3,100 changed files
with
119,134 additions
and
81,336 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,3 +27,6 @@ | |
|
||
'bolt': | ||
- '/\bbolt(?!\-)\b/i' | ||
|
||
'infra:commit-access-request': | ||
- '/Request Commit Access/' |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
# 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' | ||
permissions: | ||
packages: write | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Build the Linux builder image | ||
working-directory: libcxx/utils/ci | ||
run: docker compose build actions-builder | ||
env: | ||
TAG: ${{ github.sha }} | ||
|
||
# - name: Build the Android builder image | ||
# working-directory: libcxx/utils/ci | ||
# run: docker compose build android-buildkite-builder | ||
# env: | ||
# TAG: ${{ github.sha }} | ||
|
||
- 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: ${{ 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: ${{ github.sha }} |
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
Oops, something went wrong.