加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.drone.yml 740 Bytes
一键复制 编辑 原始数据 按行查看 历史
Takuro Ashie 提交于 2021-10-12 10:22 . Drone CI: Update to Ruby 3.0 and 2.7
kind: pipeline
name: fluentd-test-arm64-3-0
platform:
os: linux
arch: arm64
steps:
- name: fluentd-test-arm64-3-0
image: arm64v8/ruby:3.0
commands:
- apt update
- apt -y install libgmp3-dev
- export BUNDLE_GEMFILE=$PWD/Gemfile
- gem update --system
- bundle install --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}
- bundle exec rake test
---
kind: pipeline
name: fluentd-test-arm64-2-7
platform:
os: linux
arch: arm64
steps:
- name: fluentd-test-arm64-2-7
image: arm64v8/ruby:2.7
commands:
- apt update
- apt -y install libgmp3-dev
- export BUNDLE_GEMFILE=$PWD/Gemfile
- gem update --system
- bundle install --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}
- bundle exec rake test
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化