-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
liya2017
authored and
liya2017
committed
May 6, 2023
1 parent
5b97fe3
commit 807c43f
Showing
12 changed files
with
179 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# EditorConfig helps developers define and maintain consistent | ||
# coding styles between different editors and IDEs | ||
# editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
[*.md] | ||
# double whitespace at end of line | ||
# denotes a line break in Markdown | ||
trim_trailing_whitespace = false | ||
|
||
[*.yml] | ||
indent_size = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: PR Lint | ||
concurrency: | ||
group: Conventional PR-${{ github.ref }} | ||
cancel-in-progress: true | ||
on: | ||
pull_request: | ||
types: ['opened', 'edited', 'reopened', 'synchronize'] | ||
jobs: | ||
WIP: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: wip/action@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
Conventional: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: Namchee/[email protected] | ||
# env: | ||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
# to override config-conventional rules, specify a relative path to your rules module, actions/checkout is required for this setting! | ||
# commitlintRulesPath: "./commitlint.rules.js" # default: undefined | ||
close: false | ||
issue: false | ||
message: 'The title of this PR does not conform the [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/). Please fix it, thx.' | ||
|
||
# if the PR contains a single commit, fail if the commit message and the PR title do not match | ||
access_token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
Label: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Add labels based on PR title | ||
uses: TDAK1509/set-label-based-on-pr-title@v1 | ||
with: | ||
words: feat;perf;refactor;fix;chore;docs;style;ci | ||
labels: feature;enhancement;refactor;bugfix;chore;document;style;skip_changelog | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
ERBOSE := $(if ${CI},--verbose,) | ||
|
||
COMMIT := $(shell git rev-parse --short HEAD) | ||
|
||
ifneq ("$(wildcard /usr/lib/librocksdb.so)","") | ||
SYS_LIB_DIR := /usr/lib | ||
else ifneq ("$(wildcard /usr/lib64/librocksdb.so)","") | ||
SYS_LIB_DIR := /usr/lib64 | ||
else | ||
USE_SYS_ROCKSDB := | ||
endif | ||
|
||
USE_SYS_ROCKSDB := | ||
SYS_ROCKSDB := $(if ${USE_SYS_ROCKSDB},ROCKSDB_LIB_DIR=${SYS_LIB_DIR},) | ||
|
||
CARGO := env ${SYS_ROCKSDB} cargo | ||
|
||
test: | ||
cargo build && ${CARGO} test ${VERBOSE} --all -- --skip trust_metric --nocapture | ||
|
||
doc: | ||
cargo doc --all --no-deps | ||
|
||
doc-deps: | ||
cargo doc --all | ||
|
||
# generate GraphQL API documentation | ||
doc-api: | ||
bash docs/build/gql_api.sh | ||
|
||
check: | ||
${CARGO} check ${VERBOSE} --all | ||
|
||
build: | ||
${CARGO} build ${VERBOSE} --release | ||
|
||
check-fmt: | ||
cargo +nightly fmt ${VERBOSE} --all -- --check | ||
|
||
fmt: | ||
cargo +nightly fmt ${VERBOSE} --all | ||
|
||
sort: | ||
cargo sort -gw | ||
|
||
check-sort: | ||
cargo sort -gwc | ||
|
||
capsule-build: | ||
capsule build | ||
|
||
ci: check-fmt clippy test | ||
|
||
info: | ||
date | ||
pwd | ||
env | ||
|
||
# For counting lines of code | ||
stats: | ||
@cargo count --version || cargo +nightly install --git https://github.com/kbknapp/cargo-count | ||
@cargo count --separator , --unsafe-statistics | ||
|
||
# Use cargo-audit to audit Cargo.lock for crates with security vulnerabilities | ||
# expecting to see "Success No vulnerable packages found" | ||
security-audit: | ||
@cargo audit --version || cargo install cargo-audit | ||
@cargo audit | ||
|
||
|
||
unit-test: capsule-build | ||
|
||
schema: | ||
make -C common/types/ schema | ||
|
||
.PHONY: build prod prod-test | ||
.PHONY: fmt test clippy doc doc-deps doc-api check stats | ||
.PHONY: ci info security-audit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,16 @@ | ||
[package] | ||
name = "tests" | ||
version = "0.1.0" | ||
edition = "2018" | ||
|
||
edition = "2021" | ||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
bit-vec = "0.6.3" | ||
blst = "0.3.4" | ||
ckb-system-scripts = "0.5" | ||
ckb-testtool = "0.9" | ||
hex = "0.4.3" | ||
keccak-hash = "0.10" | ||
molecule = "0.7" | ||
ckb-system-scripts = "0.5" | ||
blst = "0.3.4" | ||
rand = "0.8.4" | ||
rlp = "0.5.1" | ||
keccak-hash = "0.10" | ||
bit-vec = "0.6.3" | ||
hex = "0.4.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters