Skip to content

Commit

Permalink
ci: Fix script
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Feb 26, 2025
1 parent f9d2807 commit 96220d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ jobs:
target_lower="${target//-/_}"
target_lower="${target_lower//./_}"
target_upper=$(tr '[:lower:]' '[:upper:]' <<<"${target_lower}")
if [[ "$(eval "printf '%s\n' \${CARGO_TARGET_${target_upper}_RUNNER}")" == *"qemu"* ]]; then
if [[ "$(eval "printf '%s\n' \${CARGO_TARGET_${target_upper}_RUNNER:-}")" == *"qemu"* ]]; then
printf '%s\n' "RUSTFLAGS=${RUSTFLAGS} --cfg qemu" >>"${GITHUB_ENV}"
fi
- run: |
Expand Down

0 comments on commit 96220d2

Please sign in to comment.