Abheek Dhawan
3 years ago
10 changed files with 18 additions and 0 deletions
@ -0,0 +1,10 @@ |
|||
--- |
|||
name: default |
|||
kind: pipeline |
|||
type: docker |
|||
|
|||
steps: |
|||
- name: build |
|||
image: gcc |
|||
commands: |
|||
- ./test.sh |
@ -0,0 +1 @@ |
|||
a.out |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,7 @@ |
|||
#!/bin/bash |
|||
FILES=*/*/*.cpp |
|||
|
|||
for f in $FILES |
|||
do |
|||
gcc "$f" -lstdc++ -o /dev/null |
|||
done |
Binary file not shown.
Loading…
Reference in new issue