kszucs edited a comment on pull request #9111: URL: https://github.com/apache/arrow/pull/9111#issuecomment-755296467
I set up a pipeline for Rust. You can see the available pipelines here https://buildkite.com/apache-arrow The dispatcher is responsible to trigger other pipelines, it uses the following configuration: ```yaml steps: - label: "Triggering pipelines" plugins: - chronotc/monorepo-diff#v1.2.0: diff: .buildkite/pull-request-diff.sh ${BUILDKITE_PULL_REQUEST_BASE_BRANCH} ${BUILDKITE_COMMIT} watch: - path: go/ config: trigger: arrow-go - path: rust/ config: trigger: arrow-rust - path: cpp config: trigger: arrow-c-plus-plus - path: python/ config: trigger: arrow-python ``` The rust pipeline loads the `rust.yml`: ```yaml steps: - command: buildkite-agent pipeline upload .buildkite/rust.yml ``` Since we have no agents running at the moment you won't be able to trigger builds. I'll try to configure a machine in the upcoming days, but we have network provider issues with our self hosted workers. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
