wip
Build and test / test (push) Failing after 32s Details

This commit is contained in:
Oystein Kristoffer Tveit 2024-04-30 17:50:31 +02:00
parent d0435d02be
commit dac2db7a8c
Signed by: oysteikt
GPG Key ID: 9F2F7D8250F35146
1 changed files with 42 additions and 37 deletions

View File

@ -6,44 +6,44 @@ 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 # 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
@ -51,6 +51,9 @@ 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: sudo 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:
@ -65,10 +68,12 @@ 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
@ -101,7 +106,7 @@ 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@v4