Compare commits

...

2 Commits

Author SHA1 Message Date
2af23f8e95 Merge pull request 'fix(ci): use POSIX dot instead of source in arm64 build step' (#14) from fix/arm64-source-sh into master
Some checks failed
Auto Tag / autotag (push) Successful in 1m26s
Auto Tag / wiki-sync (push) Successful in 1m28s
Auto Tag / build-macos-arm64 (push) Successful in 6m15s
Auto Tag / build-windows-amd64 (push) Successful in 14m49s
Auto Tag / build-linux-arm64 (push) Failing after 22m1s
Auto Tag / build-linux-amd64 (push) Has been cancelled
Reviewed-on: #14
2026-04-05 19:42:49 +00:00
Shaun Arman
5991bf3f7f fix(ci): use POSIX dot instead of source in arm64 build step
Some checks failed
Test / rust-tests (pull_request) Has been cancelled
Test / frontend-tests (pull_request) Has been cancelled
Test / frontend-typecheck (pull_request) Has been cancelled
Test / rust-fmt-check (pull_request) Has been cancelled
Test / rust-clippy (pull_request) Has been cancelled
The act runner executes run: blocks with sh (dash), not bash.
'source' is a bash built-in; POSIX sh uses '.' instead.

Co-Authored-By: fix/arm64-source-sh <noreply@local>
2026-04-05 14:41:18 -05:00

View File

@ -451,7 +451,7 @@ jobs:
OPENSSL_NO_VENDOR: "0"
OPENSSL_STATIC: "1"
run: |
source "$HOME/.cargo/env"
. "$HOME/.cargo/env"
npm ci --legacy-peer-deps
rustup target add aarch64-unknown-linux-gnu
CI=true npx tauri build --target aarch64-unknown-linux-gnu