-
-
Notifications
You must be signed in to change notification settings - Fork 248
38 lines (29 loc) · 899 Bytes
/
runas.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: cargo pgrx test --runas
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: 1
jobs:
ubuntu:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
with:
prefix-key: "v1-cargo-pgrx-test--runas"
- name: Install Postgres deps
run: |
sudo apt-get update -y -qq --fix-missing
sudo apt-get install -y postgresql-server-dev-14
- name: Report version
run: cargo --version
- name: Install cargo pgrx
run: cd cargo-pgrx && cargo install --path . --debug
- name: cargo pgrx init
run: cargo pgrx init --pg14=$(which pg_config)
- name: Test cargo pgrx test --runas
run: cd pgrx-examples/arrays && cargo pgrx test pg14 --runas postgres --pgdata=/tmp/pgdata