panorama/.github/workflows/ci.yml

74 lines
1.4 KiB
YAML
Raw Normal View History

on:
push:
branches:
- master
2021-02-16 10:52:42 +00:00
2021-03-25 09:35:31 +00:00
name: workflow
2021-02-16 10:52:42 +00:00
jobs:
2021-03-25 09:35:31 +00:00
workflow:
2021-02-16 10:52:42 +00:00
runs-on: ubuntu-latest
2021-03-25 09:35:31 +00:00
2021-02-16 10:52:42 +00:00
steps:
2021-03-25 09:35:31 +00:00
# Setup
2021-02-16 10:55:36 +00:00
- name: checkout
uses: actions/checkout@v2
- name: rust
uses: actions-rs/toolchain@v1
2021-02-16 10:52:42 +00:00
with:
toolchain: stable
2021-02-16 10:55:36 +00:00
- name: mdbook
uses: peaceiris/actions-mdbook@v1
with:
mdbook-version: 'latest'
2021-03-25 09:35:31 +00:00
# Run tests
- name: run tests
run: |
cargo test --all
# Generate documentation
2021-02-16 10:55:36 +00:00
- name: build mdbook
run: |
2021-02-16 10:52:42 +00:00
mdbook build docs -d $(pwd)/public
2021-02-16 10:55:36 +00:00
- name: build api docs
run: |
cargo doc --workspace --no-deps --document-private-items
2021-02-16 10:52:42 +00:00
cp -r target/doc public/api
2021-02-16 10:55:36 +00:00
2021-02-16 10:52:42 +00:00
- name: deploy
uses: JamesIves/github-pages-deploy-action@4.0.0
with:
branch: gh-pages
folder: public
2021-03-25 09:35:31 +00:00
# Build debian package
- name: build-deb
run: |
cargo install cargo-deb
cargo deb
- uses: actions/upload-artifact@v2
with:
name: panorama.deb
path: target/debian/panorama*.deb
# Cache massively
2021-03-20 09:52:59 +00:00
- uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
~/.cargo/bin
2021-03-20 09:52:59 +00:00
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
2021-03-20 09:52:59 +00:00
2021-03-25 09:35:31 +00:00
# vim: set sw=2 et :