Skip to content

Commit

Permalink
Try something else
Browse files Browse the repository at this point in the history
  • Loading branch information
ldionne committed Jan 10, 2025
1 parent e804175 commit b1ae06f
Showing 1 changed file with 30 additions and 15 deletions.
45 changes: 30 additions & 15 deletions .github/workflows/libcxx-build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,33 @@ concurrency:

jobs:
buildkite:
runs-on: ubuntu-latest # Just triggering the pipeline, this doesn't matter
steps:
- name: "Trigger a Buildkite Build"
uses: "buildkite/[email protected]"
with:
buildkite_api_access_token: ${{ secrets.LIBCXX_CI_BUILDKITE_PIPELINE_ACCESS_TOKEN }}
pipeline: "llvm-project/libcxx-ci"
branch: "main"
commit: "HEAD"
message: ":github: Triggered from a GitHub Action"
ignore_pipeline_branch_filter: true
send_pull_request: true
wait: true
wait_interval: 10
wait_timeout: 300
# runs-on: ubuntu-latest # Just triggering the pipeline, this doesn't matter
uses: "buildkite/trigger-pipeline-action/[email protected]"
secrets:
buildkite_api_access_token: ${{ secrets.LIBCXX_CI_BUILDKITE_PIPELINE_ACCESS_TOKEN }}
with:
buildkite_api_access_token: ${{ secrets.LIBCXX_CI_BUILDKITE_PIPELINE_ACCESS_TOKEN }}
pipeline: "llvm-project/libcxx-ci"
branch: "main"
commit: "HEAD"
message: ":github: Triggered from a GitHub Action"
ignore_pipeline_branch_filter: true
send_pull_request: true
wait: true
wait_interval: 10
wait_timeout: 300

# steps:
# - name: "Trigger a Buildkite Build"
# uses: "buildkite/[email protected]"
# with:
# buildkite_api_access_token: ${{ secrets.LIBCXX_CI_BUILDKITE_PIPELINE_ACCESS_TOKEN }}
# pipeline: "llvm-project/libcxx-ci"
# branch: "main"
# commit: "HEAD"
# message: ":github: Triggered from a GitHub Action"
# ignore_pipeline_branch_filter: true
# send_pull_request: true
# wait: true
# wait_interval: 10
# wait_timeout: 300

0 comments on commit b1ae06f

Please sign in to comment.