Skip to content

Commit

Permalink
ci: add ci workflows for repo
Browse files Browse the repository at this point in the history
  • Loading branch information
liya2017 authored and liya2017 committed Apr 21, 2023
1 parent 5b97fe3 commit 5fd956e
Show file tree
Hide file tree
Showing 11 changed files with 148 additions and 26 deletions.
21 changes: 21 additions & 0 deletions .editorconfig
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
41 changes: 41 additions & 0 deletions .github/workflows/pr_lint.yml
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 }}"
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[workspace]
members = [
"tests",
"common/blst",
"common/types",
"common/util",
"contracts/selection",
"tests",
]

[profile.release]
Expand Down
75 changes: 75 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
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} 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

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: test

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
1 change: 0 additions & 1 deletion common/blst/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ name = "blst"
version = "0.1.0"
edition = "2018"
build = "build.rs"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
3 changes: 1 addition & 2 deletions common/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@
name = "axon-types"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
molecule = { version = "0.7", default-features = false }
# ckb-types = { version = "0.108", default-features = false }
# ethereum-types = { version = "0.14", default-features = false }
molecule2 = { path = "moleculec-c2" }
molecule = { version = "0.7", default-features = false }
3 changes: 1 addition & 2 deletions common/util/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@
name = "util"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ckb-std = "0.12"
blake2b-ref = { version = "0.3", default-features = false }
ckb-std = "0.12"
hex = { version = "0.4.3", default-features = false }
3 changes: 1 addition & 2 deletions contracts/selection/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@
name = "selection"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ckb-std = "0.12"
axon-types = { path = "../../common/types" }
ckb-std = "0.12"
util = { path = "../../common/util" }
11 changes: 5 additions & 6 deletions tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,15 @@
name = "tests"
version = "0.1.0"
edition = "2018"

# 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"
7 changes: 1 addition & 6 deletions tests/src/helper.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
#![allow(dead_code)]

use crate::axon;
use ckb_testtool::{
ckb_types::{
packed::*,
prelude::*,
},
};
use ckb_testtool::ckb_types::{packed::*, prelude::*};

pub fn axon_byte32(bytes: &Byte32) -> axon::Byte32 {
let bytes: [u8; 32] = bytes.unpack().into();
Expand Down
7 changes: 1 addition & 6 deletions tests/src/tests.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
use super::*;
use ckb_testtool::ckb_types::{
bytes::Bytes,
core::{TransactionBuilder},
packed::*,
prelude::*,
};
use ckb_testtool::ckb_types::{bytes::Bytes, core::TransactionBuilder, packed::*, prelude::*};
use ckb_testtool::{builtin::ALWAYS_SUCCESS, context::Context};
use helper::*;
use molecule::prelude::*;
Expand Down

0 comments on commit 5fd956e

Please sign in to comment.