-
Notifications
You must be signed in to change notification settings - Fork 1
86 lines (71 loc) · 2.07 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
name: Moras CI
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
types: [opened, synchronize, reopened, ready_for_review]
merge_group:
type: ["checks_requested"]
env:
CARGO_TERM_COLOR: always
jobs:
Build-Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Rust nightly with rustfmt
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
components: rustfmt
- name: JS/JSON format check
working-directory: ./src-ui
run: |
npm install
npm run format-check
- name: Rust format check
working-directory: ./src-tauri
run: cargo fmt -- --check
- name: Tauri dependencies
run: |
sudo apt-get update &&
sudo apt-get install -y libgtk-3-dev libayatana-appindicator3-dev libwebkit2gtk-4.0-dev webkit2gtk-driver xvfb protobuf-compiler
- name: Cache Cargo packages
uses: actions/cache@v4
with:
path: |
~/.cargo
src-tauri/target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Generate Report
if: github.ref == 'refs/heads/main'
working-directory: ./src-tauri
run: |
../scripts/report.sh
env:
RUSTFLAGS: "--cfg ci"
- name: Cargo test
if: github.ref != 'refs/heads/main'
working-directory: ./src-tauri
run: cargo test
env:
RUSTFLAGS: "--cfg ci"
#- name: Cargo build
#working-directory: ./src-tauri
#run: cargo build --release
- name: Build Rust doc
if: github.ref == 'refs/heads/main'
working-directory: ./src-tauri
run: |
cargo doc --no-deps
mv *.html target/doc/report.html
- name: Deploy Doc
uses: peaceiris/actions-gh-pages@v4
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./src-tauri/target/doc