Skip to content

Commit 8ca028f

Browse files
authored
chore: Fix windows test tags (#5953)
After #5909 we prepend `gore2regex` tag if it's missing. In go you need to stick to the same separator for tags e.g. spaces _or_ commas. In all places we use space as separator except for windows test. So windows test breaks because we end up with `-tags "gore2regex nodocker,nonetwork"`.
1 parent 4f49b57 commit 8ca028f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/test_windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ jobs:
3131
# We'll need to make sure the same cache is reused by the workflow to build Windows binaries.
3232
cache: false
3333
- name: Test
34-
run: '& "C:/Program Files/git/bin/bash.exe" -c ''make GO_TAGS="nodocker,nonetwork" test'''
34+
run: '& "C:/Program Files/git/bin/bash.exe" -c ''make GO_TAGS="nodocker nonetwork" test'''

0 commit comments

Comments
 (0)