Skip to content

Commit 03fb254

Browse files
committed
build(ci-cd): update build command to use cargo
Replaced 'cross build' with 'cargo build' for better compatibility with the target environment. This change ensures that the build process utilizes the standard cargo toolchain, which may resolve issues related to cross-compilation.
1 parent ec977b2 commit 03fb254

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci-cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ jobs:
184184

185185
- name: Build
186186
run: |
187-
cross build --release --target ${{ matrix.target }}
187+
cargo build --release --target ${{ matrix.target }}
188188
strip target/${{ matrix.target }}/release/oneseal || true
189189
190190
# - name: Check binary bloat

0 commit comments

Comments
 (0)