This repository has been archived by the owner on Oct 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
91 lines (89 loc) · 2.65 KB
/
trunk-build-publish.yaml
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
name: pgfs extension
defaults:
run:
shell: bash
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
lint:
name: Run linters
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install Rust minimal nightly with clippy and rustfmt
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
with:
prefix-key: "pgfs-extension-lint"
cache-directories: |
/home/runner/.pgrx
- uses: ./.github/actions/pgrx-init
- name: Cargo format
run: cargo +nightly fmt --all --check
- name: Clippy
run: cargo clippy
test:
name: Run tests
needs: lint
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install Rust stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: Swatinem/rust-cache@v2
with:
prefix-key: "pgfs-extension-lint"
cache-directories: |
/home/runner/.pgrx
- uses: ./.github/actions/pgrx-init
- name: test
run: |
rm -rf ./target/pgfs-test-data-* || true
cargo pgrx test
publish:
# only publish off main branch
if: github.ref == 'refs/heads/main'
name: trunk publish
needs: test
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install Rust stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: Swatinem/rust-cache@v2
with:
prefix-key: "pgfs-extension-lint"
cache-directories: |
/home/runner/.pgrx
- name: Install stoml and pg-trunk
shell: bash
run: |
set -xe
wget https://github.com/freshautomations/stoml/releases/download/v0.7.1/stoml_linux_amd64 &> /dev/null
mv stoml_linux_amd64 stoml
chmod +x stoml
sudo mv stoml /usr/local/bin/
cargo install pg-trunk
- name: trunk build
run: trunk build
- name: trunk publish
env:
TRUNK_API_TOKEN: ${{ secrets.TRUNK_AUTH_TOKEN }}
run: |
pgfs_ver=$(stoml Cargo.toml package.version)
pgfs_descr=$(stoml Cargo.toml package.description)
pgfs_repo=$(stoml Cargo.toml package.repository)
trunk publish pgfs --version ${pgfs_ver} --file .trunk/pgfs-${pgfs_ver}.tar.gz --description ${pgfs_descr} --homepage "https://github.com/CoreDB-io/pgfs" --repository "https://github.com/CoreDB-io/pgfs" --license "MIT"