summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorThomas Bertschinger <tahbertschinger@gmail.com>2024-01-15 23:41:00 -0700
committerKent Overstreet <kent.overstreet@linux.dev>2024-01-16 01:46:41 -0500
commit0a284fc4ffcbb46f0a4b921415ef12a9c75fa05c (patch)
tree22aa82b7448833713ca975eb3c241f607742fc78 /.github/workflows
parent249bf7b9d446092e1b744c366b7e8c4563a437f0 (diff)
convert main() from C to Rust
This moves the main() function from C to Rust. It also updates the name of the Rust package from "bcachefs-rust" to "bcachefs-tools". Signed-off-by: Thomas Bertschinger <tahbertschinger@gmail.com> Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build-packages.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build-packages.yml b/.github/workflows/build-packages.yml
index ff8044ad..08a68274 100644
--- a/.github/workflows/build-packages.yml
+++ b/.github/workflows/build-packages.yml
@@ -79,7 +79,7 @@ jobs:
- name: Extract MSRV
run: |
MSRV=$(cargo metadata --format-version 1 --no-deps --manifest-path rust-src/Cargo.toml |
- jq -r '.packages[] | select(.name == "bcachefs-rust") | .rust_version')
+ jq -r '.packages[] | select(.name == "bcachefs-tools") | .rust_version')
echo "MSRV=$MSRV" >> $GITHUB_ENV
- name: Install Rust ${{ env.MSRV }} toolchain
run: |