diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..573524583815e693dc3f19553d4153bffa6bb809 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,20 @@ +image: "FROM r.lcr.gr/microhacks/bevy-builder" + +build-linux: + stage: build + cache: + key: + files: + - Cargo.lock + paths: + - target + script: + - cargo build --release + - strip target/release/crunch + artifacts: + name: crunch.linux.x86 + paths: + - target/release/crunch + expire_in: 1 day + only: + - trunk \ No newline at end of file