diff --git a/.drone.yml b/.drone.yml index 09810d0..d7ff2f8 100644 --- a/.drone.yml +++ b/.drone.yml @@ -6,5 +6,5 @@ steps: - name: test-compiler image: gcc commands: - - cd code/compiler/09 - - mkdir build && cd build + - cd code/compiler + - ./test.sh diff --git a/code/compiler/test.sh b/code/compiler/test.sh new file mode 100755 index 0000000..5bb0df2 --- /dev/null +++ b/code/compiler/test.sh @@ -0,0 +1,4 @@ +cd 09 +mkdir -p build && cd build +cmake .. +make -j8