Skip to content

Commit

Permalink
Add linux aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
n-e committed Mar 20, 2024
1 parent ff01d3e commit c4f72e9
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,13 @@ jobs:
matrix:
platform:
- target: x86_64-unknown-linux-gnu
os: ubuntu-20.04
os: ubuntu-22.04

- target: aarch64-unknown-linux-gnu
os: ubuntu-22.04

- target: aarch64-apple-darwin
os: macOS-latest
os: macos-14

steps:
- name: Checkout
Expand Down
10 changes: 10 additions & 0 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"

[dependencies]
clap = { version = "4.5.3", features = ["derive"] }
native-tls = "0.2.11"
native-tls = { version = "0.2.11", features = ["vendored"] }
postgres = "0.19.7"
postgres-native-tls = "0.5.0"
regex = "1.10.3"
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ Unlike many databases, the `psql` CLI only supports text, csv and proprietary bi

## Supported formats

Right now `pgextract` only supports extracting data to NDJSON, but I plan to add relevant formats shortly.

| Format | Load |  Extract |
| ---------------------- | ---- | -------- |
| Newline-delimited JSON |||

0 comments on commit c4f72e9

Please sign in to comment.