Skip to content

Commit

Permalink
.github/workflows/ci.yml: bypass Go build if the compiler is not pres…
Browse files Browse the repository at this point in the history
…ent.
  • Loading branch information
dot-asm committed May 14, 2024
1 parent a2f3196 commit afd60c5
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 @@ -154,7 +154,7 @@ jobs:
- name: Go
shell: bash
run: |
go version
go version 2>/dev/null || exit 0
if ! (grep -q -e '^flags.*\badx\b' /proc/cpuinfo) 2>/dev/null; then
export CGO_CFLAGS="-O -D__BLST_PORTABLE__"
fi
Expand Down

0 comments on commit afd60c5

Please sign in to comment.