forked from byte8192/test
first commit
This commit is contained in:
commit
117cc6ae7d
3 changed files with 16 additions and 0 deletions
8
.woodpecker/build.yaml
Normal file
8
.woodpecker/build.yaml
Normal file
|
@ -0,0 +1,8 @@
|
|||
when:
|
||||
- event: [push, pull_request, manual]
|
||||
|
||||
steps:
|
||||
- name: build
|
||||
image: masscollabs/build-essential:latest
|
||||
commands:
|
||||
- make
|
2
Makefile
Normal file
2
Makefile
Normal file
|
@ -0,0 +1,2 @@
|
|||
all:
|
||||
gcc -Wall -Wextra -pedantic -Werror -o executable main.c
|
6
main.c
Normal file
6
main.c
Normal file
|
@ -0,0 +1,6 @@
|
|||
#include <stdio.h>
|
||||
|
||||
int main(){
|
||||
printf("CI Test\n");
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Reference in a new issue