alexevanczuk / packs

A pure Rust implementation of packwerk, a gradual modularization tool for Ruby
MIT License
70 stars 7 forks source link

Use cross to build linux artifact #185

Closed ethankhall closed 5 months ago

ethankhall commented 5 months ago

By using cross, the build of the artifact will have a more stable ABI because the docker image has a well defined version of libraries that are defined, meaning that updates to "ubuntu-latest" won't impact the compatible version of the built binaries.

This change defines the "toolchain" for rust, meaning that new versions of rust won't automatically be picked up (unless changed to stable).

This also removes the action-rs uses, because they are deprecated and the github actions install rustup by default

alexevanczuk commented 5 months ago

Thank you!