From 35cd6babd5517cbad820742228a379704a2f42d2 Mon Sep 17 00:00:00 2001 From: dylanhuang Date: Thu, 14 Nov 2024 14:42:43 +0700 Subject: [PATCH] ci: remove compact job file --- .github/workflows/compact.yml | 50 ----------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 .github/workflows/compact.yml diff --git a/.github/workflows/compact.yml b/.github/workflows/compact.yml deleted file mode 100644 index 4acc9757a..000000000 --- a/.github/workflows/compact.yml +++ /dev/null @@ -1,50 +0,0 @@ -# Ensures that `Compact` codec changes are backwards compatible. -# -# 1) checkout `main` -# 2) randomly generate and serialize to disk many different type vectors with `Compact` (eg. Header, Transaction, etc) -# 3) checkout `pr` -# 4) deserialize previously generated test vectors - -# on: - -# pull_request: -# merge_group: -# push: -# branches: [main] - -# env: -# CARGO_TERM_COLOR: always -# TOOL_CHAIN: "1.82" - -# name: compact-codec -# jobs: -# compact-codec: -# runs-on: [ bnb-chain-ap-qa-cicd-runners ] -# strategy: -# matrix: -# bin: -# - cargo run --bin reth --features "dev" -# - cargo run --bin op-reth --features "optimism opbnb" --manifest-path crates/optimism/bin/Cargo.toml -# - cargo run --bin bsc-reth --features "bsc" --manifest-path crates/bsc/bin/Cargo.toml -# steps: -# - uses: dtolnay/rust-toolchain@stable -# with: -# toolchain: ${{ env.TOOL_CHAIN }} -# - uses: Swatinem/rust-cache@v2 -# with: -# cache-on-failure: true -# - name: Checkout base -# uses: actions/checkout@v4 -# with: -# ref: ${{ github.base_ref || 'main' }} -# # On `main` branch, generates test vectors and serializes them to disk using `Compact`. -# - name: Generate compact vectors -# run: | -# ${{ matrix.bin }} -- test-vectors compact --write -# - name: Checkout PR -# uses: actions/checkout@v4 -# with: -# clean: false -# # On incoming merge try to read and decode previously generated vectors with `Compact` -# - name: Read vectors -# run: ${{ matrix.bin }} -- test-vectors compact --read