-
Notifications
You must be signed in to change notification settings - Fork 4
90 lines (74 loc) · 2.3 KB
/
build.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
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
name: Build
on:
push:
branches:
- main
- release-*
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
env:
RUST_LOG: info
steps:
- uses: actions/checkout@v4
name: Checkout Repository
- uses: Swatinem/rust-cache@v2
name: Enable Rust Caching
- name: Build
# Build in release without `testing` feature, this should work without `hotshot_example` config.
run: |
cargo build --workspace --release
- name: Format Check
run: cargo fmt -- --check
# Run Clippy on all targets. The lint workflow doesn't run Clippy on tests, because the tests
# don't compile with all combinations of features.
- name: Clippy(all-features)
run: cargo clippy --workspace --all-features --all-targets -- -D warnings
- name: Generate Documentation
run: |
cargo doc --no-deps --lib --release --all-features
echo '<meta http-equiv="refresh" content="0; url=hotshot_query_service">' > target/doc/index.html
- name: Deploy Documentation
uses: peaceiris/actions-gh-pages@v4
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./target/doc
cname: tide-disco.docs.espressosys.com
test-sqlite:
runs-on: ubuntu-latest
env:
RUST_LOG: info
steps:
- uses: actions/checkout@v4
name: Checkout Repository
- uses: Swatinem/rust-cache@v2
name: Enable Rust Caching
# Install nextest
- name: Install Nextest
run: cargo install cargo-nextest
- name: Test
run: |
cargo nextest run --workspace --release --all-features
timeout-minutes: 60
test-postgres:
runs-on: ubuntu-latest
env:
RUST_LOG: info
steps:
- uses: actions/checkout@v4
name: Checkout Repository
- uses: Swatinem/rust-cache@v2
name: Enable Rust Caching
# Install nextest
- name: Install Nextest
run: cargo install cargo-nextest
- name: Test
run: |
cargo nextest run --workspace --release --features "testing"
timeout-minutes: 60