git.delta.rocks / jrsonnet / refs/commits / 3e45ba73b51c

difftreelog

ci use cargo directly, without makefile

Lach2020-08-25parent: #3f8fb69.patch.diff
in: master

1 file changed

modified.gitlab-ci.ymldiffbeforeafterboth
21 image: $CI_REGISTRY_IMAGE:build21 image: $CI_REGISTRY_IMAGE:build
22 stage: build22 stage: build
23 script:23 script:
24 - make test24 - cargo clippy
25 cache:25 cache:
26 key: test26 key: test
27 paths:27 paths:
31 image: $CI_REGISTRY_IMAGE:build31 image: $CI_REGISTRY_IMAGE:build
32 stage: build32 stage: build
33 script:33 script:
34 - make build34 - cargo build --release
35 cache:35 cache:
36 key: linux36 key: linux
37 paths:37 paths:
46 image: $CI_REGISTRY_IMAGE:build46 image: $CI_REGISTRY_IMAGE:build
47 stage: build47 stage: build
48 script:48 script:
49 - make build-wasi49 - cargo build --target=wasm32-wasi --release
50 cache:50 cache:
51 key: wasm51 key: wasm
52 paths:52 paths: