Compare commits
9 Commits
01273809da
...
0fa6097bbf
| Author | SHA1 | Date | |
|---|---|---|---|
| 0fa6097bbf | |||
| f6e2c31c85 | |||
|
|
c7c6af7dcf | ||
| 0d78195e4e | |||
|
|
86cf4c4526 | ||
|
|
6765dd1214 | ||
|
|
0c96f67b47 | ||
|
|
3bc9704258 | ||
|
|
9448a294a2 |
17
.github/workflows/linux_test.yml
vendored
Normal file
17
.github/workflows/linux_test.yml
vendored
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
|
||||||
|
name: test on Linux
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: ["main"]
|
||||||
|
pull_request:
|
||||||
|
branches: ["main"]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: test
|
||||||
|
run: bash ./test.sh
|
||||||
@@ -9,6 +9,7 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
|
||||||
|
|
||||||
#define RED "\033[0;31m"
|
#define RED "\033[0;31m"
|
||||||
#define RED_B "\033[0;41m"
|
#define RED_B "\033[0;41m"
|
||||||
#define GREEN "\033[0;32m"
|
#define GREEN "\033[0;32m"
|
||||||
@@ -17,6 +18,7 @@
|
|||||||
#define RESET "\033[0m"
|
#define RESET "\033[0m"
|
||||||
#define CYAN "\033[0;36m"
|
#define CYAN "\033[0;36m"
|
||||||
|
|
||||||
|
|
||||||
#define LOG_BUFFER_SIZE 1024
|
#define LOG_BUFFER_SIZE 1024
|
||||||
|
|
||||||
Logger *G_LOGGER = NULL;
|
Logger *G_LOGGER = NULL;
|
||||||
|
|||||||
Reference in New Issue
Block a user