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

Revamp README #1601

Merged
merged 3 commits into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion .github/actions/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ runs:
darwinia-network/build-tool:latest \
cargo b --release --locked \
-p darwinia \
--no-default-features \
--features=$FEATURES
else
mkdir -p target/release
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ jobs:
${{ matrix.action }}-${{ env.CACHE_VERSION }}-${{ runner.os }}-
- name: Action ${{ matrix.action }}
if: matrix.action == 'build'
run: cargo b --locked -p darwinia --no-default-features --features all-natives,evm-tracing --profile ci-dev
run: cargo b --locked -p darwinia --features all-runtime,evm-tracing --profile ci-dev
- name: Action ${{ matrix.action }}
if: matrix.action == 'test'
run: SKIP_WASM_BUILD=1 cargo t --locked --no-default-features --features all-natives,runtime-benchmarks --profile ci-dev
run: SKIP_WASM_BUILD=1 cargo t --locked --features all-runtime,runtime-benchmarks --profile ci-dev
- name: Configure artifacts
if: matrix.action == 'build'
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@ jobs:
matrix:
node:
- network: mainnet
features: darwinia-native,crab-native
features: darwinia-runtime,crab-runtime
bz2: true
- network: mainnet
features: darwinia-native,crab-native,evm-tracing
features: darwinia-runtime,crab-runtime,evm-tracing
type: tracing
- network: testnet
features: koi-native
features: koi-runtime
bz2: true
- network: testnet
features: koi-native,evm-tracing
features: koi-runtime,evm-tracing
type: tracing
steps:
- name: Free disk space
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
uses: ./.github/actions/build
with:
package: darwinia
features: all-natives
features: all-runtime
cache_prefix: staging-${{ env.CACHE_VERSION }}
enable_cache: true
enable_tar_bz2: true
Expand Down
Loading