File tree Expand file tree Collapse file tree 5 files changed +109
-2364
lines changed Expand file tree Collapse file tree 5 files changed +109
-2364
lines changed Original file line number Diff line number Diff line change
1
+ name : C/C++ CI
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ build :
7
+ runs-on : ubuntu-latest
8
+ timeout-minutes : 30
9
+ steps :
10
+ - uses : actions/checkout@v4
11
+ - name : CPU Information
12
+ run : lscpu || echo "CPU information not available"
13
+ - name : Compiler Information
14
+ run : cc -v
15
+ - name : make
16
+ run : make
17
+ - name : Run insert
18
+ run : l=$(find . -executable -type f|grep -v .git) ; for e in $l ; do echo "$e" ; timeout 1m "$e" || echo TIMEOUT; done
19
+ - name : Run Delete
20
+ run : l=$(find . -executable -type f|grep -v .git) ; for e in $l ; do echo "$e" ; timeout 1m "$e" -d || echo TIMEOUT; done
Original file line number Diff line number Diff line change 1
- all :run-test
1
+ all :run-test run-test.bulk
2
2
3
3
run-test :test.c ../common.c m-dict.h
4
4
$(CC ) -O3 -Wall -DNDEBUG $< -o $@
5
5
6
+ run-test.bulk :test-bulk.c ../common.c m-dict.h
7
+ $(CC ) -O3 -Wall -DNDEBUG $< -o $@
8
+
6
9
clean :
7
- rm -fr run-test
10
+ rm -fr run-test run-test.bulk
You can’t perform that action at this time.
0 commit comments