blob: 9d8da4562611f318575744a304314d711bc002c4 [file] [view]
<!---
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
# DataFusion xtask
This directory contains DataFusion's project automation implemented using the
[`xtask` pattern](https://github.com/matklad/cargo-xtask).
## Usage
Run the following command from the repository root for the available commands,
arguments, and examples:
```shell
cargo xtask help
```
## CI runner
`cargo xtask ci [args]` domain is used for organizing commands used in GitHub CI.
For example, `cargo xtask ci step test workspace` runs DataFusion's default CI test suite. Developers can run the same command to reproduce that GitHub Actions step locally. Append `--explain` to display the underlying command without running it.
The goal is to keep local development and GitHub CI runs in sync. Each CI step command is defined once in this in-repository Rust binary and is invoked the same way locally and in GitHub Actions.
Tracking issue: https://github.com/apache/datafusion/issues/24487