From 3e45ba73b51c84a0e042ab1de6a51f1585a1e80a Mon Sep 17 00:00:00 2001 From: Lach Date: Tue, 25 Aug 2020 18:04:01 +0000 Subject: [PATCH] ci: use cargo directly, without makefile --- --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -21,7 +21,7 @@ image: $CI_REGISTRY_IMAGE:build stage: build script: - - make test + - cargo clippy cache: key: test paths: @@ -31,7 +31,7 @@ image: $CI_REGISTRY_IMAGE:build stage: build script: - - make build + - cargo build --release cache: key: linux paths: @@ -46,7 +46,7 @@ image: $CI_REGISTRY_IMAGE:build stage: build script: - - make build-wasi + - cargo build --target=wasm32-wasi --release cache: key: wasm paths: -- gitstuff