Skip to content

Commit

Permalink
fix CI with broken birli container
Browse files Browse the repository at this point in the history
  • Loading branch information
d3v-null committed Nov 13, 2024
1 parent 27acd68 commit bd51e1e
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 7 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,21 @@ jobs:
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Install stable Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt, clippy, llvm-tools

- name: Generate test lcov coverage into coverage/ dir
run: |
mkdir -p coverage
/opt/cargo/bin/cargo llvm-cov --all --locked --lcov --output-path coverage/coverage.lcov
cargo llvm-cov --all --locked --lcov --output-path coverage/coverage.lcov
# this uses the result of the previous run to generate a text summary
/opt/cargo/bin/cargo llvm-cov --no-run --locked
cargo llvm-cov --no-run --locked
- name: Upload reports to codecov.io
uses: codecov/codecov-action@v1
with:
Expand Down
15 changes: 11 additions & 4 deletions .github/workflows/docker_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,14 @@ jobs:
rustup toolchain install stable --component rustfmt,clippy
rustup default stable
- name: Cargo Make CI
run: |
export PATH="${HOME}/.cargo/bin:${PATH}"
cargo make ci
- name: Install cargo-make
uses: actions-rs/cargo@v1
with:
command: install
args: --debug cargo-make

- name: Install deps
uses: actions-rs/cargo@v1
with:
command: make
args: ci
2 changes: 1 addition & 1 deletion .github/workflows/linux_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
test:
strategy:
matrix:
os: ["ubuntu-18.04", "ubuntu-20.04", "ubuntu-22.04", "ubuntu-24.04"]
os: ["ubuntu-20.04", "ubuntu-22.04", "ubuntu-24.04"]
runs-on: "${{ matrix.os }}"
steps:
- name: Checkout sources
Expand Down

0 comments on commit bd51e1e

Please sign in to comment.