Skip to content

Commit afd60c5

Browse files
committedMay 14, 2024·
.github/workflows/ci.yml: bypass Go build if the compiler is not present.
1 parent a2f3196 commit afd60c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ jobs:
154154
- name: Go
155155
shell: bash
156156
run: |
157-
go version
157+
go version 2>/dev/null || exit 0
158158
if ! (grep -q -e '^flags.*\badx\b' /proc/cpuinfo) 2>/dev/null; then
159159
export CGO_CFLAGS="-O -D__BLST_PORTABLE__"
160160
fi

0 commit comments

Comments
 (0)
Please sign in to comment.