Skip to content
Merged
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
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,5 @@ jobs:
run: ./scripts/docker-ci-build-image.sh
- name: Build workspace packages
run: ./scripts/docker-ci-build-workspace.sh
- name: Build README examples
run: ./scripts/docker-ci-build-examples.sh
17 changes: 17 additions & 0 deletions .github/workflows/core-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: core-tests

on:
push:
pull_request:

jobs:
core-tests:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
- name: Workspace tests (exclude pgrx/extension)
run: cargo test --workspace --exclude pg_debyte_ext --exclude pg_debyte_pgrx --exclude readme_known_schema --exclude readme_by_id --exclude readme_envelope
19 changes: 19 additions & 0 deletions .github/workflows/pg-extension-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: pg-extension-tests

on:
push:
pull_request:

jobs:
pg-extension-tests:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build docker image
run: ./scripts/docker-ci-build-image.sh
- name: PGRX tests (pg_debyte_ext)
run: ./scripts/docker-ci-test-pg-extension.sh
- name: Workspace tests (include pg_debyte_pgrx)
run: docker run --rm -t pg-debyte-ci bash -lc "/usr/local/cargo/bin/cargo test --workspace --exclude pg_debyte_ext"
17 changes: 0 additions & 17 deletions .github/workflows/tests.yml

This file was deleted.

42 changes: 39 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,8 @@ members = [
"pg_debyte_core", "pg_debyte_ext",
"pg_debyte_macros",
"pg_debyte_pgrx", "pg_debyte_tools",
"examples/readme_known_schema",
"examples/readme_by_id",
"examples/readme_envelope",
]
resolver = "2"
Loading