wip
Build docs / docs (push) Failing after 1m46s Details

This commit is contained in:
Oystein Kristoffer Tveit 2024-04-30 17:50:31 +02:00
parent d0435d02be
commit 6a2295174d
Signed by: oysteikt
GPG Key ID: 9F2F7D8250F35146
2 changed files with 130 additions and 87 deletions

View File

@ -6,105 +6,109 @@ on:
pull_request: pull_request:
jobs: jobs:
build: # build:
runs-on: ubuntu-latest-personal # runs-on: ubuntu-latest-personal
steps: # steps:
- uses: actions/checkout@v3 # - uses: actions/checkout@v3
- 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
- name: Cache dependencies # - name: Cache dependencies
uses: Swatinem/rust-cache@v2 # uses: Swatinem/rust-cache@v2
- name: Build # - name: Build
run: cargo build --all-features --verbose --release # run: cargo build --all-features --verbose --release
check: # check:
runs-on: ubuntu-latest-personal # runs-on: ubuntu-latest-personal
steps: # steps:
- uses: actions/checkout@v3 # - uses: actions/checkout@v3
- 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 # components: rustfmt, clippy
- name: Cache dependencies # - name: Cache dependencies
uses: Swatinem/rust-cache@v2 # uses: Swatinem/rust-cache@v2
- name: Check code format # - name: Check code format
run: cargo fmt -- --check # run: cargo fmt -- --check
- name: Check clippy # - name: Check clippy
run: cargo clippy --all-features -- --deny warnings # run: cargo clippy --all-features -- --deny warnings
test: # test:
runs-on: ubuntu-latest-personal # runs-on: ubuntu-latest-personal
steps: # steps:
- uses: actions/checkout@v3 # - uses: actions/checkout@v3
- uses: cargo-bins/cargo-binstall@main # - uses: cargo-bins/cargo-binstall@main
- name: Install latest nightly toolchain # - name: Install mpv
uses: actions-rs/toolchain@v1 # run: apt-get update && apt-get install -y mpv
with:
toolchain: nightly
override: true
components: rustfmt, clippy, llvm-tools-preview
- name: Cache dependencies # - name: Install latest nightly toolchain
uses: Swatinem/rust-cache@v2 # uses: actions-rs/toolchain@v1
# with:
# toolchain: nightly
# override: true
# components: llvm-tools-preview
- name: Create necessary directories # - name: Cache dependencies
run: mkdir -p target/test-report # uses: Swatinem/rust-cache@v2
- name: Run tests # - name: Create necessary directories
run: cargo test --all-features --release -Z unstable-options --report-time --format json | tee target/test-report/test-report.json # run: mkdir -p target/test-report
env:
RUSTFLAGS: "-Cinstrument-coverage"
LLVM_PROFILE_FILE: "target/release/coverage/%p-%m.profraw"
- name: Install markdown-test-report # - name: Run tests
run: cargo binstall -y markdown-test-report # run: |
# cargo test --all-features --release --no-fail-fast -- -Zunstable-options --format json --report-time \
# | tee target/test-report/test-report.json
# env:
# RUSTFLAGS: "-Cinstrument-coverage"
# LLVM_PROFILE_FILE: "target/coverage/%p-%m.profraw"
- name: Generate test report # - name: Install markdown-test-report
run: markdown-test-report target/test-report/test-report.json target/test-report/test-report.md # run: cargo binstall -y markdown-test-report
- name: Upload test report # - name: Generate test report
uses: actions/upload-artifact@v4 # run: markdown-test-report target/test-report/test-report.json --output target/test-report/test-report.md
with:
name: test-report
path: target/test-report/test-report.md
- name: Install grcov # - name: Upload test report
run: cargo binstall -y grcov # uses: actions/upload-artifact@v3
# with:
# name: test-report.md
# path: target/test-report/test-report.md
- name: Generate coverage report # - name: Install grcov
run: | # run: cargo binstall -y grcov
grcov \
--source-dir . \
--binary-path ./target/release/deps/ \
--excl-start 'mod test* \{' \
--ignore 'tests/*' \
--ignore "*test.rs" \
--ignore "*tests.rs" \
--ignore "*github.com*" \
--ignore "*libcore*" \
--ignore "*rustc*" \
--ignore "*liballoc*" \
--ignore "*cargo*" \
-t html \
-o ./target/coverage/html \
target/coverage/prof
- name: Upload coverage report # - name: Generate coverage report
uses: actions/upload-artifact@v4 # run: |
with: # grcov \
name: coverage # --source-dir . \
path: target/coverage/html # --binary-path ./target/release/deps/ \
# --excl-start 'mod test* \{' \
# --ignore 'tests/*' \
# --ignore "*test.rs" \
# --ignore "*tests.rs" \
# --ignore "*github.com*" \
# --ignore "*libcore*" \
# --ignore "*rustc*" \
# --ignore "*liballoc*" \
# --ignore "*cargo*" \
# -t html \
# -o ./target/coverage/html \
# target/coverage/
# - name: Upload coverage report
# uses: actions/upload-artifact@v3
# with:
# name: coverage
# path: target/coverage/html

View File

@ -0,0 +1,39 @@
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
echo "${{ secrets.OYSTEIKT_GITEA_WEBDOCS_SSH_KEY }}" > ~/.ssh/key && chmod 600 ~/.ssh/key
- name: Deploy docs
run: rsync --compress --verbose --rsh="ssh -oBatchMode=yes -i ~/.ssh/key" "target/docs" "oysteikt@microbel.pvv.ntnu.no:~/web-docs/gitea/${{ gitea.repository }}/${{ gitea.ref }}"
# - name: Upload docs
# uses: actions/upload-artifact@v3
# with:
# name: docs
# path: target/doc