Skip to content

test: add TiDB into the engine tests #3698

test: add TiDB into the engine tests

test: add TiDB into the engine tests #3698

Workflow file for this run

name: "Release binary compilation test"
on:
pull_request:
paths-ignore:
- '.buildkite/**'
- '*.md'
- 'LICENSE'
- 'CODEOWNERS'
- 'renovate.json'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test-crate-compilation:
name: "Compile top level crates on Linux"
strategy:
fail-fast: false
runs-on: buildjet-16vcpu-ubuntu-2004
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
default: true
- run: "cargo clean && cargo build --release -p schema-engine-cli"
name: "Compile Migration Engine"
- run: "cargo clean && cargo build --release -p prisma-fmt"
name: "Compile prisma-fmt"
- run: "cargo clean && cargo build --release -p query-engine"
name: "Compile Query Engine Binary"
- run: "cargo clean && cargo build --release -p query-engine-node-api"
name: "Compile Query Engine Library"
- name: "Check that Cargo.lock did not change"
run: "git diff --exit-code"