diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7db06f9a3..16f7b8d95 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,9 +37,13 @@ jobs: run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info - name: Upload code coverage results - uses: codecov/codecov-action@v2 + uses: codecov/codecov-action@v3 with: - fail_ci_if_error: true + fail_ci_if_error: ${{ matrix.os != 'macos-latest' }} + # Disregard build errors on Mac until + # https://github.com/codecov/codecov-action/issues/745 + # is fixed. + verbose: true tests-msrv: name: Unit tests @@ -204,4 +208,4 @@ jobs: uses: aig787/cargo-udeps-action@v1 with: version: latest - args: --all-targets + args: --all-targets --all-features diff --git a/c2patool/Cargo.toml b/c2patool/Cargo.toml index 66c6b602f..13624bde5 100644 --- a/c2patool/Cargo.toml +++ b/c2patool/Cargo.toml @@ -8,7 +8,7 @@ rust-version = "1.58.0" [dependencies] anyhow = "1.0" -c2pa = { path = "../sdk", features = ["file_io"] } +c2pa = { version = "0.1", features = ["file_io"] } dirs = "4.0" env_logger = "0.9" log = "0.4"