Skip to content

Commit d6bba12

Browse files
committed
ci: downgrade log for the msrv
1 parent fd50f59 commit d6bba12

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.cirrus.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ task:
2222
test_script:
2323
- . $HOME/.cargo/env
2424
- env LLVM_PROFILE_FILE="calloop-%p-%m.profraw" RUSTFLAGS="-Zinstrument-coverage" cargo test --all-features
25-
- grcov . --binary-path ./target/debug -s . -t lcov --branch --llvm --ignore-not-existing --keep-only "src/sys/*" --excl-br-start "mod tests \{" --excl-start "mod tests \{" --excl-br-line "#\[derive\(" --excl-line "#\[derive\(" -o lcov.info
26-
- bash -c 'bash <(curl -s https://codecov.io/bash) -f lcov.info'
25+
- grcov . --binary-path ./target/debug -s . -t lcov --branch --llvm --ignore-not-existing --keep-only "src/*" --excl-br-start "mod tests \{" --excl-start "mod tests \{" --excl-br-line "#\[derive\(" --excl-line "#\[derive\(" -o lcov.info
26+
- bash -c 'bash <(curl -s https://codecov.io/bash) -f lcov.info' -F freebsd

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,13 @@ jobs:
124124
path: target
125125
key: ${{ runner.os }}-test-${{ steps.rustcversion.outputs.version }}-${{ hashFiles('**/Cargo.toml') }}
126126

127+
- name: Downgrade log
128+
uses: actions-rs/cargo@v1
129+
if: ${{ matrix.rust == '1.56.0' }}
130+
with:
131+
command: update
132+
args: --package log --precise 0.4.16
133+
127134
- name: Run tests
128135
uses: actions-rs/cargo@v1
129136
with:

0 commit comments

Comments
 (0)