3 Star 0 Fork 0

MHBase/third_party_rust_proc-macro-error

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.gitlab-ci.yml 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
stages:
- test
.setup_template: &setup_template
stage: test
image: debian:stable-slim
before_script:
- export CARGO_HOME="$CI_PROJECT_DIR/.cargo"
- export PATH="$PATH:$CARGO_HOME/bin"
- export RUST_BACKTRACE=full
- apt-get update > /dev/null
- apt-get install -y curl build-essential > /dev/null
- curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain $RUST_VERSION
- rustup --version
- rustc --version
- cargo --version
.test_all_template: &test_all_template
<<: *setup_template
script:
- cargo test --all
test-stable:
<<: *test_all_template
variables:
RUST_VERSION: stable
test-beta:
<<: *test_all_template
variables:
RUST_VERSION: beta
test-nightly:
<<: *test_all_template
variables:
RUST_VERSION: nightly
test-1.31.0:
<<: *setup_template
script:
- cargo test --tests # skip doctests
variables:
RUST_VERSION: 1.31.0
test-fmt:
<<: *setup_template
script:
- cargo fmt --all -- --check
variables:
RUST_VERSION: stable
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mhbase/third_party_rust_proc-macro-error.git
[email protected]:mhbase/third_party_rust_proc-macro-error.git
mhbase
third_party_rust_proc-macro-error
third_party_rust_proc-macro-error
trunk_20231007

搜索帮助