forked from abheekd/usaco-practice
Abheek Dhawan
3 years ago
2 changed files with 17 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,7 @@ |
|||||
|
#!/bin/bash |
||||
|
FILES=*/*/*.cpp |
||||
|
|
||||
|
for f in $FILES |
||||
|
do |
||||
|
gcc $f -lstdc++ -o /dev/null |
||||
|
done |
Loading…
Reference in new issue