Skip to content
This repository has been archived by the owner on Aug 22, 2024. It is now read-only.

Update dependencies #1261

Merged
merged 1 commit into from
Jul 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/mirai_on_mirai.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ jobs:
build_with_vcpkg_installed_z3:
strategy:
matrix:
build: [linux, macos, windows]
build: [ linux, macos, windows ]
include:
- build: linux
os: ubuntu-latest
vcpkg_triplet: x64-linux
- build: macos
os: macos-latest
vcpkg_triplet: x64-osx
vcpkg_triplet: arm64-osx
- build: windows
os: windows-latest
vcpkg_triplet: x64-windows-static-md
Expand Down
32 changes: 16 additions & 16 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,33 +31,33 @@ jobs:
id: vcpkg
with:
pkgs: z3
triplet: x64-osx
triplet: arm64-osx
cache-key: macos-latest
revision: master
token: ${{ github.token }}
extra-args: --clean-buildtrees-after-build

- name: Execute tests
run: |
cargo test --all --no-default-features --features=vcpkg -- --test-threads=1
cargo test --all -- --test-threads=1
env:
CARGO_INCREMENTAL: 0
RUSTFLAGS: "-Zprofile -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off -Zpanic_abort_tests"

- name: Setup grcov
run: |
cargo install grcov

- name: Run grcov
run: |
zip -0 cov.zip $(find . -name "mirai*.gc*" -print)
grcov cov.zip -s . -t lcov --llvm --ignore-not-existing --ignore "/*" -o lcov.info

- name: Upload coverage data to codecov.io
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: "lcov.info"
# - name: Setup grcov
# run: |
# cargo install grcov
#
# - name: Run grcov
# run: |
# zip -0 cov.zip $(find . -name "mirai*.gc*" -print)
# grcov cov.zip -s . -t lcov --llvm --ignore-not-existing --ignore "/*" -o lcov.info
#
# - name: Upload coverage data to codecov.io
# uses: codecov/codecov-action@v3
# with:
# token: ${{ secrets.CODECOV_TOKEN }}
# files: "lcov.info"

mirai_on_mirai_ubuntu:
runs-on: ubuntu-latest
Expand Down
Loading
Loading