Browse Source

Attempt to implement CI

master
Abheek Dhawan 3 years ago
parent
commit
68676cd642
  1. 10
      .drone.yml
  2. 7
      test.sh

10
.drone.yml

@ -0,0 +1,10 @@
---
name: default
kind: pipeline
type: docker
steps:
- name: build
image: gcc
commands:
- ./test.sh

7
test.sh

@ -0,0 +1,7 @@
#!/bin/bash
FILES=*/*/*.cpp
for f in $FILES
do
gcc $f -lstdc++ -o /dev/null
done
Loading…
Cancel
Save