Skip to content

Commit f188889

Browse files
committed
fix: correct relay conform flag order in CI
RELAY v1.13 fixed relay conform to reject --strict placed after the binary path instead of silently ignoring it (the exact bug that made this repo's misordered invocation appear to work before). Flags must precede the positional <binary> argument. Signed-off-by: Matt Jones <47545907+SoundMatt@users.noreply.github.com>
1 parent 582ca01 commit f188889

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ jobs:
151151
run: go install github.com/SoundMatt/RELAY/cmd/relay@latest
152152

153153
- name: RELAY conformance gate
154-
run: relay conform ./build/cli/cpp-lin-cli --strict
154+
run: relay conform --strict ./build/cli/cpp-lin-cli
155155

156156
- name: RELAY interop gate (§20 Continuous Conformance)
157157
run: relay interop --protocol LIN ./build/cli/cpp-lin-cli

0 commit comments

Comments
 (0)