Skip to content

Commit

Permalink
Merge pull request #28 from RGB-WG/v0.10
Browse files Browse the repository at this point in the history
Release v0.10.1
  • Loading branch information
dr-orlovsky committed Oct 14, 2023
2 parents 034eb7e + 920ad5b commit 680102a
Show file tree
Hide file tree
Showing 10 changed files with 267 additions and 434 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
strategy:
fail-fast: false
matrix:
toolchain: [ nightly, beta, stable, 1.67.0 ]
toolchain: [ nightly, beta, stable, 1.70.0 ]
steps:
- uses: actions/checkout@v3
- name: Install rust ${{ matrix.toolchain }}
Expand Down
49 changes: 27 additions & 22 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,34 +13,39 @@ jobs:
codecov:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install latest nightly
- uses: actions/checkout@v2
- name: Set up toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
profile: minimal
toolchain: stable
override: true
- name: Build & test
components: rustfmt, llvm-tools-preview
- name: Build
uses: actions-rs/cargo@v1
with:
command: test
args: --workspace --all-features --no-fail-fast
command: build
args: --release
env:
CARGO_INCREMENTAL: '0'
RUSTFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off'
RUSTDOCFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off'
- id: coverage
name: Generate coverage
uses: actions-rs/[email protected]
CARGO_INCREMENTAL: "0"
RUSTFLAGS: "-Cinstrument-coverage"
RUSTDOCFLAGS: "-Cinstrument-coverage"
- name: Test
uses: actions-rs/cargo@v1
with:
args: >
-t lcov
--llvm
--ignore-not-existing
--ignore "/*"
-o ./target/lcov.info
./target/debug/
command: test
args: --all-features --no-fail-fast
env:
CARGO_INCREMENTAL: "0"
RUSTFLAGS: "-Cinstrument-coverage"
RUSTDOCFLAGS: "-Cinstrument-coverage"
- name: Install grcov
run: if [[ ! -e ~/.cargo/bin/grcov ]]; then cargo install grcov; fi
- name: Generate coverage
run: grcov . --binary-path target/debug/deps/ -s . -t lcov --branch --ignore-not-existing --ignore '../**' --ignore '/*' -o coverage.lcov
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v3
with:
file: ${{ steps.coverage.outputs.report }}
directory: ./coverage/reports/
files: ./coverage.lcov
flags: rust
fail_ci_if_error: true
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
name: Clippy
with:
command: clippy
args: --workspace --all-features --all-targets
args: --workspace --all-features --all-targets -- -D warnings
doc:
runs-on: ubuntu-latest
steps:
Expand Down
Loading

0 comments on commit 680102a

Please sign in to comment.