Skip to content

Commit 52ea5ac

Browse files
committed
try 28 to fix CI
1 parent b0660aa commit 52ea5ac

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/end2end-smoke-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,10 @@ jobs:
9898
cp ../../capstone/include/capstone/*.h ../../include/capstone/
9999
100100
# try compiling all generated code
101-
gcc -DRISCV_OP_MEM_RUNTIME=1 \ `# RISCV_OP_MEM_RUNTIME defined in the modified riscv.h, defined here for simplicity`
102-
-I../../capstone/include \ `# include directory for <...> includes in SStream.c`
103-
test_main.c ../../capstone/SStream.c \ `# the generated code and SStream.c`
104-
|| { \ `# else`
101+
gcc -DRISCV_OP_MEM_RUNTIME=1 \ `RISCV_OP_MEM_RUNTIME defined in the modified riscv.h, defined here for simplicity`
102+
-I../../capstone/include \ `include directory for <...> includes in SStream.c`
103+
test_main.c ../../capstone/SStream.c \ `the generated code and SStream.c`
104+
|| { \ `else`
105105
echo "Failure: Trying to compile the tool-generated C code failed."; \
106106
exit 1; \
107107
}

0 commit comments

Comments
 (0)