wip
Build and test / docs (push) Successful in 4m8s
Details
Build and test / docs (push) Successful in 4m8s
Details
This commit is contained in:
parent
dece945ed2
commit
fc58894a67
|
@ -6,7 +6,122 @@ on:
|
||||||
pull_request:
|
pull_request:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
# build:
|
||||||
|
# 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
|
||||||
|
# run: cargo build --all-features --verbose --release
|
||||||
|
|
||||||
|
# check:
|
||||||
|
# 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
|
||||||
|
# components: rustfmt, clippy
|
||||||
|
|
||||||
|
# - name: Cache dependencies
|
||||||
|
# uses: Swatinem/rust-cache@v2
|
||||||
|
|
||||||
|
# - name: Check code format
|
||||||
|
# run: cargo fmt -- --check
|
||||||
|
|
||||||
|
# - name: Check clippy
|
||||||
|
# run: cargo clippy --all-features -- --deny warnings
|
||||||
|
|
||||||
|
# test:
|
||||||
|
# runs-on: ubuntu-latest-personal
|
||||||
|
# steps:
|
||||||
|
# - uses: actions/checkout@v3
|
||||||
|
# - uses: cargo-bins/cargo-binstall@main
|
||||||
|
|
||||||
|
# - name: Install mpv
|
||||||
|
# run: apt-get update && apt-get install -y mpv
|
||||||
|
|
||||||
|
# - name: Install latest nightly toolchain
|
||||||
|
# uses: actions-rs/toolchain@v1
|
||||||
|
# with:
|
||||||
|
# toolchain: nightly
|
||||||
|
# override: true
|
||||||
|
# components: llvm-tools-preview
|
||||||
|
|
||||||
|
# - name: Cache dependencies
|
||||||
|
# uses: Swatinem/rust-cache@v2
|
||||||
|
|
||||||
|
# - name: Create necessary directories
|
||||||
|
# run: mkdir -p target/test-report
|
||||||
|
|
||||||
|
# - name: Run tests
|
||||||
|
# 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: Install markdown-test-report
|
||||||
|
# run: cargo binstall -y markdown-test-report
|
||||||
|
|
||||||
|
# - name: Generate test report
|
||||||
|
# run: markdown-test-report target/test-report/test-report.json --output target/test-report/test-report.md
|
||||||
|
|
||||||
|
# - name: Upload test report
|
||||||
|
# uses: https://git.pvv.ntnu.no/oysteikt/rsync-action@main
|
||||||
|
# with:
|
||||||
|
# source: target/test-report/test-report.md
|
||||||
|
# target: mpvipc/${{ gitea.ref_name }}/
|
||||||
|
# username: oysteikt
|
||||||
|
# ssh-key: ${{ secrets.OYSTEIKT_GITEA_WEBDOCS_SSH_KEY }}
|
||||||
|
# host: microbel.pvv.ntnu.no
|
||||||
|
# known-hosts: "microbel.pvv.ntnu.no ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEq0yasKP0mH6PI6ypmuzPzMnbHELo9k+YB5yW534aKudKZS65YsHJKQ9vapOtmegrn5MQbCCgrshf+/XwZcjbM="
|
||||||
|
|
||||||
|
# - name: Install grcov
|
||||||
|
# run: cargo binstall -y grcov
|
||||||
|
|
||||||
|
# - name: Generate coverage report
|
||||||
|
# run: |
|
||||||
|
# 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/
|
||||||
|
|
||||||
|
# - name: Upload test report
|
||||||
|
# uses: https://git.pvv.ntnu.no/oysteikt/rsync-action@main
|
||||||
|
# with:
|
||||||
|
# source: target/coverage/html/
|
||||||
|
# target: mpvipc/${{ gitea.ref_name }}/coverage/
|
||||||
|
# username: oysteikt
|
||||||
|
# ssh-key: ${{ secrets.OYSTEIKT_GITEA_WEBDOCS_SSH_KEY }}
|
||||||
|
# host: microbel.pvv.ntnu.no
|
||||||
|
# known-hosts: "microbel.pvv.ntnu.no ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEq0yasKP0mH6PI6ypmuzPzMnbHELo9k+YB5yW534aKudKZS65YsHJKQ9vapOtmegrn5MQbCCgrshf+/XwZcjbM="
|
||||||
|
|
||||||
|
docs:
|
||||||
runs-on: ubuntu-latest-personal
|
runs-on: ubuntu-latest-personal
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
@ -20,95 +135,38 @@ jobs:
|
||||||
- name: Cache dependencies
|
- name: Cache dependencies
|
||||||
uses: Swatinem/rust-cache@v2
|
uses: Swatinem/rust-cache@v2
|
||||||
|
|
||||||
- name: Build
|
- name: Build docs
|
||||||
run: cargo build --all-features --verbose --release
|
run: cargo doc --all-features --document-private-items --release
|
||||||
|
|
||||||
check:
|
- name: Transfer files
|
||||||
runs-on: ubuntu-latest-personal
|
uses: https://git.pvv.ntnu.no/oysteikt/rsync-action@main
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
|
|
||||||
- name: Install latest nightly toolchain
|
|
||||||
uses: actions-rs/toolchain@v1
|
|
||||||
with:
|
with:
|
||||||
toolchain: nightly
|
source: target/doc/
|
||||||
override: true
|
target: mpvipc/${{ gitea.ref_name }}/docs/
|
||||||
components: rustfmt, clippy
|
username: oysteikt
|
||||||
|
ssh-key: ${{ secrets.OYSTEIKT_GITEA_WEBDOCS_SSH_KEY }}
|
||||||
|
host: microbel.pvv.ntnu.no
|
||||||
|
known-hosts: "microbel.pvv.ntnu.no ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEq0yasKP0mH6PI6ypmuzPzMnbHELo9k+YB5yW534aKudKZS65YsHJKQ9vapOtmegrn5MQbCCgrshf+/XwZcjbM="
|
||||||
|
|
||||||
- name: Cache dependencies
|
# ssh-key: ${{ secrets.SSH_KEY }}
|
||||||
uses: Swatinem/rust-cache@v2
|
# - name: Install rsync
|
||||||
|
# run: apt-get update && apt-get install -y rsync
|
||||||
|
|
||||||
- name: Check code format
|
# - name: Install SSH key
|
||||||
run: cargo fmt -- --check
|
# run: |
|
||||||
|
# mkdir -p ~/.ssh
|
||||||
|
# cat <<EOF >~/.ssh/key
|
||||||
|
# ${{ secrets.OYSTEIKT_GITEA_WEBDOCS_SSH_KEY }}
|
||||||
|
# EOF
|
||||||
|
# chmod 600 ~/.ssh/key
|
||||||
|
|
||||||
- name: Check clippy
|
# - name: Deploy docs
|
||||||
run: cargo clippy --all-features -- --deny warnings
|
# run: |
|
||||||
|
# rsync \
|
||||||
test:
|
# --archive \
|
||||||
runs-on: ubuntu-latest-personal
|
# --compress \
|
||||||
steps:
|
# --verbose \
|
||||||
- uses: actions/checkout@v3
|
# --mkpath \
|
||||||
- uses: cargo-bins/cargo-binstall@main
|
# --rsh="ssh -oBatchMode=yes -oStrictHostKeyChecking=accept-new -i ~/.ssh/key" \
|
||||||
|
# "target/doc/" \
|
||||||
- name: Install mpv
|
# "oysteikt@microbel.pvv.ntnu.no:mpvipc/${{ gitea.ref_name }}/docs/"
|
||||||
run: apt-get update && apt-get install -y mpv
|
|
||||||
|
|
||||||
- name: Install latest nightly toolchain
|
|
||||||
uses: actions-rs/toolchain@v1
|
|
||||||
with:
|
|
||||||
toolchain: nightly
|
|
||||||
override: true
|
|
||||||
components: llvm-tools-preview
|
|
||||||
|
|
||||||
- name: Cache dependencies
|
|
||||||
uses: Swatinem/rust-cache@v2
|
|
||||||
|
|
||||||
- name: Create necessary directories
|
|
||||||
run: mkdir -p target/test-report
|
|
||||||
|
|
||||||
- name: Run tests
|
|
||||||
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: Install markdown-test-report
|
|
||||||
run: cargo binstall -y markdown-test-report
|
|
||||||
|
|
||||||
- name: Generate test report
|
|
||||||
run: markdown-test-report target/test-report/test-report.json --output target/test-report/test-report.md
|
|
||||||
|
|
||||||
- name: Upload test report
|
|
||||||
uses: actions/upload-artifact@v3
|
|
||||||
with:
|
|
||||||
name: test-report.md
|
|
||||||
path: target/test-report/test-report.md
|
|
||||||
|
|
||||||
- name: Install grcov
|
|
||||||
run: cargo binstall -y grcov
|
|
||||||
|
|
||||||
- name: Generate coverage report
|
|
||||||
run: |
|
|
||||||
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/
|
|
||||||
|
|
||||||
- name: Upload coverage report
|
|
||||||
uses: actions/upload-artifact@v3
|
|
||||||
with:
|
|
||||||
name: coverage
|
|
||||||
path: target/coverage/html
|
|
|
@ -1,44 +0,0 @@
|
||||||
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/mpvipc/${{ gitea.ref_name }}/
|
|
||||||
run: |
|
|
||||||
rsync \
|
|
||||||
--archive \
|
|
||||||
--compress \
|
|
||||||
--verbose \
|
|
||||||
--mkpath \
|
|
||||||
--rsh="ssh -oBatchMode=yes -oStrictHostKeyChecking=accept-new -i ~/.ssh/key" \
|
|
||||||
"target/doc/" \
|
|
||||||
"oysteikt@microbel.pvv.ntnu.no:mpvipc/${{ gitea.ref_name }}/"
|
|
Loading…
Reference in New Issue