File tree Expand file tree Collapse file tree 1 file changed +6
-9
lines changed Expand file tree Collapse file tree 1 file changed +6
-9
lines changed Original file line number Diff line number Diff line change 9
9
strategy :
10
10
matrix :
11
11
# Disabling windows builds while we fix installing PostgreSQL 16
12
- os : [ubuntu-24.04, macos-14, windows-2022]
13
- cgo : ['1', '0' ]
12
+ # os: [ubuntu-24.04, macos-14, windows-2022]
13
+ os : [ubuntu-24.04 ]
14
14
# Workaround no native support for conditional matrix items
15
15
# https://github.com/orgs/community/discussions/26253#discussioncomment-6745038
16
16
# isMain:
19
19
# - isMain: false
20
20
# include:
21
21
# - os: ubuntu-24.04
22
- # cgo: '1'
23
- # - os: ubuntu-24.04
24
- # cgo: '0'
25
- name : test ${{ matrix.os }} cgo=${{ matrix.cgo }}
22
+ name : test ${{ matrix.os }}
26
23
runs-on : ${{ matrix.os }}
27
24
28
25
steps :
@@ -43,13 +40,13 @@ jobs:
43
40
- name : install ./...
44
41
run : go install ./...
45
42
env :
46
- CGO_ENABLED : ${{ matrix.cgo }}
43
+ CGO_ENABLED : " 0 "
47
44
48
45
- name : build internal/endtoend
49
46
run : go build ./...
50
47
working-directory : internal/endtoend/testdata
51
48
env :
52
- CGO_ENABLED : ${{ matrix.cgo }}
49
+ CGO_ENABLED : " 0 "
53
50
54
51
- name : test ./...
55
52
run : gotestsum --junitfile junit.xml -- --tags=examples -timeout 20m ./...
58
55
CI_SQLC_PROJECT_ID : ${{ secrets.CI_SQLC_PROJECT_ID }}
59
56
CI_SQLC_AUTH_TOKEN : ${{ secrets.CI_SQLC_AUTH_TOKEN }}
60
57
SQLC_AUTH_TOKEN : ${{ secrets.CI_SQLC_AUTH_TOKEN }}
61
- CGO_ENABLED : ${{ matrix.cgo }}
58
+ CGO_ENABLED : " 0 "
62
59
63
60
vuln_check :
64
61
runs-on : ubuntu-24.04
You can’t perform that action at this time.
0 commit comments