Abheek Dhawan 3 years ago
parent
commit
5f7f545221
  1. 10
      .drone.yml
  2. 1
      .gitignore
  3. BIN
      codeforces/Caps Lock/a.out
  4. BIN
      codeforces/Next Round/a.out
  5. BIN
      codeforces/Soldier and Bananas/a.out
  6. BIN
      codeforces/Team/a.out
  7. BIN
      codeforces/Watermelon/a.out
  8. BIN
      codeforces/Way Too Long Words/a.out
  9. 7
      test.sh
  10. BIN
      usaco/Teleportation/a.out

10
.drone.yml

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

1
.gitignore

@ -0,0 +1 @@
a.out

BIN
codeforces/Caps Lock/a.out

Binary file not shown.

BIN
codeforces/Next Round/a.out

Binary file not shown.

BIN
codeforces/Soldier and Bananas/a.out

Binary file not shown.

BIN
codeforces/Team/a.out

Binary file not shown.

BIN
codeforces/Watermelon/a.out

Binary file not shown.

BIN
codeforces/Way Too Long Words/a.out

Binary file not shown.

7
test.sh

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

BIN
usaco/Teleportation/a.out

Binary file not shown.
Loading…
Cancel
Save