fix automation
This commit is contained in:
parent
0ac251279a
commit
56b576030c
|
@ -14,11 +14,15 @@ jobs:
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install -y libbsd-dev build-essential
|
sudo apt-get install -y libbsd-dev cmake build-essential
|
||||||
|
|
||||||
- name: Build and test
|
- name: Build and test
|
||||||
run: |
|
run: |
|
||||||
make tests
|
mkdir build
|
||||||
|
cd build
|
||||||
|
cmake ..
|
||||||
|
make
|
||||||
|
./tests
|
||||||
|
|
||||||
docs:
|
docs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
|
@ -15,10 +15,10 @@
|
||||||
#include "lfstring.h"
|
#include "lfstring.h"
|
||||||
#include "lfcrypto.h"
|
#include "lfcrypto.h"
|
||||||
#include "lfparsing.h"
|
#include "lfparsing.h"
|
||||||
|
#include "lfinput.h"
|
||||||
|
|
||||||
#if defined(__APPLE__) || defined(__MACH__)
|
#if defined(__APPLE__) || defined(__MACH__)
|
||||||
#include "lfmacos.h"
|
#include "lfmacos.h"
|
||||||
#include "lfinput.h"
|
|
||||||
#endif /* defined(__APPLE__) || defined(__MACH__) */
|
#endif /* defined(__APPLE__) || defined(__MACH__) */
|
||||||
|
|
||||||
void print_ll(List *list) {
|
void print_ll(List *list) {
|
||||||
|
|
Loading…
Reference in New Issue