Compare commits

...

2 Commits

Author SHA1 Message Date
289801f9f0 Merge pull request 'fix(ci): remove GITHUB_PATH append that was breaking arm64 install step' (#13) from fix/arm64-github-path into master
Some checks failed
Auto Tag / autotag (push) Successful in 50s
Auto Tag / wiki-sync (push) Successful in 52s
Auto Tag / build-windows-amd64 (push) Successful in 15m39s
Auto Tag / build-linux-amd64 (push) Successful in 27m28s
Auto Tag / build-linux-arm64 (push) Failing after 11m8s
Auto Tag / build-macos-arm64 (push) Has been cancelled
Reviewed-on: #13
2026-04-05 19:06:01 +00:00
Shaun Arman
3caaab8657 fix(ci): remove GITHUB_PATH append that was breaking arm64 install step
Some checks failed
Test / frontend-typecheck (pull_request) Has been cancelled
Test / rust-clippy (pull_request) Has been cancelled
Test / rust-tests (pull_request) Has been cancelled
Test / frontend-tests (pull_request) Has been cancelled
Test / rust-fmt-check (pull_request) Has been cancelled
$GITHUB_PATH is unset in this Gitea Actions environment, causing the
echo redirect to fail with a non-zero exit, which killed the Install
dependencies step before the Build step could run.

The append was unnecessary — the Build step already sources
$HOME/.cargo/env as its first line, which puts Cargo's bin dir in PATH.

Co-Authored-By: fix/yaml-heredoc-indent <noreply@local>
2026-04-05 14:04:32 -05:00

View File

@ -436,9 +436,9 @@ jobs:
apt-get install -y nodejs
# Step 5: Rust (not pre-installed in ubuntu:22.04)
# source "$HOME/.cargo/env" in the Build step handles PATH — no GITHUB_PATH needed
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y \
--default-toolchain 1.88.0 --profile minimal --no-modify-path
echo "$HOME/.cargo/bin" >> "$GITHUB_PATH"
- name: Build
env:
CC_aarch64_unknown_linux_gnu: aarch64-linux-gnu-gcc