Skip to content

Commit

Permalink
more tinkering with go stuff
Browse files Browse the repository at this point in the history
Change-Id: Ic6df35e548f577662f69baa04c9298dbc960f483
  • Loading branch information
cooljeanius committed Nov 16, 2024
1 parent aa6eb84 commit 50c965a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -472,6 +472,13 @@ jobs:
elif test -r /usr/x86_64-linux-gnu/include/proc_service.h; then \
cat /usr/x86_64-linux-gnu/include/proc_service.h; \
fi
if test ${{ matrix.language }} == 'go'; then \
if test -x "$(which go)"; then \
stat "$(which go)" && go version && go env; \
else \
sync && echo "no usable 'go' binary found"; \
fi; \
fi
- name: Extra coverage build (C)
if: matrix.language == 'c-cpp' && success()
Expand Down
1 change: 1 addition & 0 deletions .yamllint.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
---
# https://yamllint.readthedocs.io/en/stable/configuration.html
extends: default

rules:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module src/gdb/testsuite/gdb.go

go 1.23.2
go 1.23
1 change: 1 addition & 0 deletions go.work
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
go 1.23.2

0 comments on commit 50c965a

Please sign in to comment.