diff --git a/.drone.jsonnet b/.drone.jsonnet deleted file mode 100644 index 96c8214..0000000 --- a/.drone.jsonnet +++ /dev/null @@ -1,25 +0,0 @@ -local Pipeline(name, os) = { - kind: "pipeline", - name: name, - platform: { - os: os, - arch: "amd64" - }, - steps: [ - { - name: "test", - image: "rust:1.49-slim-buster", - commands: [ - "cd server", - "cargo build --verbose --all", - "cargo test --verbose --all" - ] - } - ] -}; - -[ - Pipeline("Linux", "linux"), - Pipeline("Windows", "windows"), - //Pipeline("MacOS", "darwin"), -] \ No newline at end of file diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index 6304590..0000000 --- a/.drone.yml +++ /dev/null @@ -1,33 +0,0 @@ ---- -kind: pipeline -name: Linux - -platform: - os: linux - arch: amd64 - -steps: -- name: test - image: rust:1.49-slim-buster - commands: - - cd server - - cargo build --verbose --all - - cargo test --verbose --all - ---- -kind: pipeline -name: Windows - -platform: - os: windows - arch: amd64 - -steps: -- name: test - image: rust:1.49-slim-buster - commands: - - cd server - - cargo build --verbose --all - - cargo test --verbose --all - -...