Files
delta-mirror/.github
nickelc d327bad4d5 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 2937f3277a.

- Revert "Delete another failing cross-compilation target"

  This reverts commit 4af8adf580.

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

  This reverts commit eebddddb0a.

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

  This reverts commit 9a2fa348eb.
2023-06-03 06:44:29 -04:00
..
2021-12-22 12:23:09 -05:00