-
Notifications
You must be signed in to change notification settings - Fork 0
98 lines (98 loc) · 3.27 KB
/
rust.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
91
92
93
94
95
96
97
98
name: Rust
on:
push:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
GH_TOKEN: ${{ github.token }}
jobs:
build_site:
name: Build site
runs-on: ubuntu-latest
steps:
# - name: Setup Rust toolchain
# uses: actions-rs/toolchain@v1
# with:
# toolchain: nightly
# target: x86_64-unknown-linux-gnu
# default: true
# profile: default
- name: Checkout codebase
uses: actions/checkout@v4
- name: Check the current Grass version
run: |
curl https://crates.io/api/v1/crates/grass > grass_rev
- name: Restore Cargo cache
id: cache-cargo
uses: actions/cache@v1
with:
path: ~/.cargo
key: ${{ runner.os }}-cargo-${{ hashFiles('src/**/*', '.cargo/**/*', 'Cargo.toml', 'rust-toolchain.toml', 'grass_rev') }}
restore-keys: |
${{ runner.os }}-cargo-${{ hashFiles('src/**/*', '.cargo/**/*', 'Cargo.toml', 'rust-toolchain.toml', 'grass_rev') }}
- if: ${{ steps.cache-cargo.outputs.cache-hit != 'true' }}
name: Install Vox and Grass
run: |
rustup update nightly && rustup default nightly
time cargo install --path . --features="cli"
time cargo install grass
- name: Generate documentation
run: time cargo doc --no-deps -Zrustdoc-map --release --quiet
- name: Build site
run: |
rm grass_rev
mkdir -p site/output
cp -r target/doc/* site/output/
cd site
./prebuild.sh
vox build -d -s
cd ../
- name: Fix permissions
run: |
chmod -c -R +rX "target/doc/" | while read line; do
echo "::warning title=Invalid file permissions automatically fixed::$line"
done
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: "site/output/"
deploy_site:
needs: build_site
name: Deploy to GitHub Pages
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
apply_suggestions:
name: Format code, apply compiler suggestions
runs-on: ubuntu-latest
steps:
- name: Checkout codebase
uses: actions/checkout@v4
- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: clippy, rustfmt
profile: minimal
- name: Format
run: cargo fmt
- name: Apply compiler suggestions
run: |
cargo fix --edition --edition-idioms --allow-dirty
cargo clippy --fix -Z unstable-options --allow-dirty
cargo fix --edition --edition-idioms --bin vox --features="cli" --allow-dirty
cargo clippy --fix -Z unstable-options --bin vox --features="cli" --allow-dirty
- name: Commit changes to code, if any
run: |
git config user.name github-actions
git config user.email [email protected]
git diff --quiet && git diff --staged --quiet || git commit -am "chore: Format and apply compiler suggestions."
git push