• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

dandavison / delta / 5163260056
59%

Build:
DEFAULT BRANCH: master
Ran 03 Jun 2023 10:49AM UTC
Jobs 1
Files 58
Run time 1s
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

pending completion
5163260056

push

github

web-flow
Fix typo in publishing build job & restore cross-compilation (#1430)

* Fix typo in publishing build job

This prevented the cross-compilation targets from using the `cross`
binary for the compilation.

The script evaluated with `${{ matrix.job.cross }}` to:
```
  if [[ "" == "true" ]]; then
    cross build --release --target x86_64-unknown-linux-musl
  else
    cargo build --release --target x86_64-unknown-linux-musl
  fi
```

The correct result for `${{ matrix.job.use-cross }}` is:
```
  if [[ "true" == "true" ]]; then
    cross build --release --target x86_64-unknown-linux-musl
  else
    cargo build --release --target x86_64-unknown-linux-musl
  fi
```

* Restore previously failed cross-compilation targets

- Revert "Delete the remaining failing cross-compilation target"

  This reverts commit 2937f3277.

- Revert "Delete another failing cross-compilation target"

  This reverts commit 4af8adf58.

- Revert "Delete i686-unknown-linux-gnu job"

  This reverts commit eebddddb0.

- Revert "Delete arm-unknown-linux-gnueabihf job"

  This reverts commit 9a2fa348e.

2336 of 3997 relevant lines covered (58.44%)

1.53 hits per line

Jobs
ID Job ID Ran Files Coverage
1 5163260056.1 03 Jun 2023 10:49AM UTC 0
58.44
GitHub Action Run
Source Files on build 5163260056
Detailed source file information is not available for this build.
  • Back to Repo
  • d327bad4 on github
  • Prev Build on master (#5161414876)
  • Next Build on master (#5163546365)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc