Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: circleci tests for STM enhancement/用于增强STM的circleci测试脚本 #112

Merged
merged 2 commits into from
Nov 17, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@

version: 2.1

orbs:
go: venus/go-pkg-test@1.0.1
jobs:
test_all:
executor:
name: go/default
tag: "cimg/go:1.18.1"
steps:
- go/setup_env:
install_ffi: true
- go/test:
display-name: unit_test_common
suite: "unit_test_common"
target: "./common/..."
- go/test:
display-name: unit_test_filemgr
suite: "filemgr"
target: "./filemgr/..."
- go/test:
display-name: integrate_test
suite: " integrate_test"
target: "./integration_test/..."
- go/test:
display-name: unit_test_storage
suite: "unit_test_storage"
target: "./storage/..."
workflows:
ci:
jobs:
- test_all