Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions .github/workflows/libcxx-trigger-buildkite.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# This workflow triggers the Buildkite pipeline for libc++.
#
# The Buildkite pipeline implements pre-commit CI checks on platforms
# where the Github actions runner can't be used.

name: "[libc++] Trigger Buildkite pipeline"
on:
pull_request_target:
paths:
- 'libcxx/**'
- 'libcxxabi/**'
- 'libunwind/**'
- 'runtimes/**'
- 'cmake/**'
schedule:
# Run nightly at 08:00 UTC (aka 00:00 Pacific, aka 03:00 Eastern)
- cron: '0 8 * * *'

permissions:
contents: read # Default everything to read-only

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true

jobs:
trigger_buildkite:
runs-on: ubuntu-latest
steps:
- name: Trigger Buildkite pipeline
uses: buildkite/trigger-pipeline-action@f0dcd5ae74452a8d17d473227c9d212dcc1eb8f9 # v2.4.0
with:
buildkite_api_access_token: ${{ secrets.BUILDKITE_API_ACCESS_TOKEN }}
pipeline: llvm-project/libcxx-ci
branch: ${{ github.ref_name }}
commit: ${{ github.sha }}
message: "Triggered by GitHub Actions PR against ${{ github.ref_name }}"
34 changes: 0 additions & 34 deletions libcxx/utils/ci/buildkite-pipeline-trigger.sh

This file was deleted.

Loading