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
3 changes: 3 additions & 0 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ on: [push, pull_request]

jobs:
lint:
if: github.event.pull_request.draft == false
name: Lint C++, Python, R, Rust, Docker
runs-on: ubuntu-latest
steps:
Expand All @@ -39,6 +40,7 @@ jobs:
run: archery lint --rat

rat:
if: github.event.pull_request.draft == false
name: Release Audit Tool (RAT)
runs-on: ubuntu-latest
steps:
Expand All @@ -52,6 +54,7 @@ jobs:
run: ./dev/release/run-rat.sh .

prettier:
if: github.event.pull_request.draft == false
name: Use prettier to check formatting of documents
runs-on: ubuntu-latest
steps:
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ on:
jobs:
# build the library, a compilation step used by multiple steps below
linux-build-lib:
if: github.event.pull_request.draft == false
name: Build Libraries on AMD64 Rust ${{ matrix.rust }}
runs-on: ubuntu-latest
strategy:
Expand Down Expand Up @@ -87,6 +88,7 @@ jobs:

# test the crate
linux-test:
if: github.event.pull_request.draft == false
name: Test Workspace on AMD64 Rust ${{ matrix.rust }}
needs: [linux-build-lib]
runs-on: ubuntu-latest
Expand Down Expand Up @@ -151,6 +153,7 @@ jobs:
CARGO_TARGET_DIR: "/github/home/target"

integration-test:
if: github.event.pull_request.draft == false
name: "Integration Test"
needs: [linux-build-lib]
runs-on: ubuntu-latest
Expand Down Expand Up @@ -221,6 +224,7 @@ jobs:
POSTGRES_PASSWORD: postgres

windows-and-macos:
if: github.event.pull_request.draft == false
name: Test on ${{ matrix.os }} Rust ${{ matrix.rust }}
runs-on: ${{ matrix.os }}
strategy:
Expand Down Expand Up @@ -249,6 +253,7 @@ jobs:
RUSTFLAGS: "-C debuginfo=0"

test-datafusion-pyarrow:
if: github.event.pull_request.draft == false
needs: [linux-build-lib]
runs-on: ubuntu-latest
strategy:
Expand Down Expand Up @@ -298,6 +303,7 @@ jobs:
CARGO_TARGET_DIR: "/github/home/target"

lint:
if: github.event.pull_request.draft == false
name: Lint
runs-on: ubuntu-latest
container:
Expand Down Expand Up @@ -355,6 +361,7 @@ jobs:
CARGO_TARGET_DIR: "/github/home/target"

miri-checks:
if: github.event.pull_request.draft == false
name: MIRI
runs-on: ubuntu-latest
strategy:
Expand Down