wip
This commit is contained in:
parent
d0435d02be
commit
28d1e4fb4a
|
@ -16,7 +16,6 @@ jobs:
|
||||||
with:
|
with:
|
||||||
toolchain: nightly
|
toolchain: nightly
|
||||||
override: true
|
override: true
|
||||||
components: rustfmt, clippy
|
|
||||||
|
|
||||||
- name: Cache dependencies
|
- name: Cache dependencies
|
||||||
uses: Swatinem/rust-cache@v2
|
uses: Swatinem/rust-cache@v2
|
||||||
|
@ -51,12 +50,15 @@ jobs:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- uses: cargo-bins/cargo-binstall@main
|
- uses: cargo-bins/cargo-binstall@main
|
||||||
|
|
||||||
|
- name: Install mpv
|
||||||
|
run: apt-get update && apt-get install -y mpv
|
||||||
|
|
||||||
- name: Install latest nightly toolchain
|
- name: Install latest nightly toolchain
|
||||||
uses: actions-rs/toolchain@v1
|
uses: actions-rs/toolchain@v1
|
||||||
with:
|
with:
|
||||||
toolchain: nightly
|
toolchain: nightly
|
||||||
override: true
|
override: true
|
||||||
components: rustfmt, clippy, llvm-tools-preview
|
components: llvm-tools-preview
|
||||||
|
|
||||||
- name: Cache dependencies
|
- name: Cache dependencies
|
||||||
uses: Swatinem/rust-cache@v2
|
uses: Swatinem/rust-cache@v2
|
||||||
|
@ -65,26 +67,28 @@ jobs:
|
||||||
run: mkdir -p target/test-report
|
run: mkdir -p target/test-report
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: cargo test --all-features --release -Z unstable-options --report-time --format json | tee target/test-report/test-report.json
|
run: |
|
||||||
|
cargo test --all-features --release --no-fail-fast -- -Zunstable-options --format json --report-time \
|
||||||
|
| tee target/test-report/test-report.json
|
||||||
env:
|
env:
|
||||||
RUSTFLAGS: "-Cinstrument-coverage"
|
RUSTFLAGS: "-Cinstrument-coverage"
|
||||||
LLVM_PROFILE_FILE: "target/release/coverage/%p-%m.profraw"
|
LLVM_PROFILE_FILE: "target/coverage/%p-%m.profraw"
|
||||||
|
|
||||||
- name: Install markdown-test-report
|
- name: Install markdown-test-report
|
||||||
run: cargo binstall -y markdown-test-report
|
run: cargo binstall -y markdown-test-report
|
||||||
|
|
||||||
- name: Generate test report
|
- name: Generate test report
|
||||||
run: markdown-test-report target/test-report/test-report.json target/test-report/test-report.md
|
run: markdown-test-report target/test-report/test-report.json --output target/test-report/test-report.md
|
||||||
|
|
||||||
- name: Upload test report
|
- name: Upload test report
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: test-report
|
name: test-report.md
|
||||||
path: target/test-report/test-report.md
|
path: target/test-report/test-report.md
|
||||||
|
|
||||||
- name: Install grcov
|
- name: Install grcov
|
||||||
run: cargo binstall -y grcov
|
run: cargo binstall -y grcov
|
||||||
|
|
||||||
- name: Generate coverage report
|
- name: Generate coverage report
|
||||||
run: |
|
run: |
|
||||||
grcov \
|
grcov \
|
||||||
|
@ -101,10 +105,10 @@ jobs:
|
||||||
--ignore "*cargo*" \
|
--ignore "*cargo*" \
|
||||||
-t html \
|
-t html \
|
||||||
-o ./target/coverage/html \
|
-o ./target/coverage/html \
|
||||||
target/coverage/prof
|
target/coverage/
|
||||||
|
|
||||||
- name: Upload coverage report
|
- name: Upload coverage report
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: coverage
|
name: coverage
|
||||||
path: target/coverage/html
|
path: target/coverage/html
|
||||||
|
|
|
@ -0,0 +1,36 @@
|
||||||
|
name: "Build docs"
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
# branches:
|
||||||
|
# - master
|
||||||
|
jobs:
|
||||||
|
docs:
|
||||||
|
runs-on: ubuntu-latest-personal
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install latest nightly toolchain
|
||||||
|
uses: actions-rs/toolchain@v1
|
||||||
|
with:
|
||||||
|
toolchain: nightly
|
||||||
|
override: true
|
||||||
|
|
||||||
|
- name: Cache dependencies
|
||||||
|
uses: Swatinem/rust-cache@v2
|
||||||
|
|
||||||
|
- name: Build docs
|
||||||
|
run: cargo doc --all-features --document-private-items --release
|
||||||
|
|
||||||
|
- name: Install rsync
|
||||||
|
run: apt-get update && apt-get install -y rsync
|
||||||
|
|
||||||
|
- name: Install SSH key
|
||||||
|
run: |
|
||||||
|
mkdir -p ~/.ssh
|
||||||
|
cat <<EOF >~/.ssh/key
|
||||||
|
${{ secrets.OYSTEIKT_GITEA_WEBDOCS_SSH_KEY }}
|
||||||
|
EOF
|
||||||
|
chmod 600 ~/.ssh/key
|
||||||
|
|
||||||
|
- name: Deploy docs to https://pvv.ntnu.no/~oysteikt/${{ gitea.repository }}/${{ gitea.ref }}/
|
||||||
|
run: rsync --archive --compress --verbose --mkpath --rsh="ssh -oBatchMode=yes -oStrictHostKeyChecking=accept-new -i ~/.ssh/key" "target/doc/" "oysteikt@microbel.pvv.ntnu.no:${{ gitea.repository }}/${{ gitea.ref }}/"
|
Loading…
Reference in New Issue