From a0b6eb10986a407d45623596e09f1842704277a9 Mon Sep 17 00:00:00 2001 From: bLd75 <18489502+bLd75@users.noreply.github.com> Date: Tue, 11 Jun 2024 19:10:12 +0400 Subject: [PATCH] remove action file --- .github/workflows/test-release.yml | 40 ------------------------------ 1 file changed, 40 deletions(-) delete mode 100644 .github/workflows/test-release.yml diff --git a/.github/workflows/test-release.yml b/.github/workflows/test-release.yml deleted file mode 100644 index ae2bd07d9f..0000000000 --- a/.github/workflows/test-release.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: Release Build -on: - push: - tags: - - v[0-9]+.[0-9]+.[0-9]+* - workflow_dispatch: -env: - SUBWASM_VERSION: 0.16.1 -jobs: - checks-and-tests: - runs-on: [self-hosted, Linux, X64] - steps: - - name: Free disk space - run: | - sudo rm -rf /usr/share/dotnet - sudo rm -rf /usr/local/lib/android - sudo rm -rf /opt/ghc - sudo rm -rf "/usr/local/share/boost" - sudo rm -rf "$AGENT_TOOLSDIRECTORY" - df -h - - - name: Checkout the source code - uses: actions/checkout@v3 - with: - submodules: true - - - name: Install deps - run: sudo apt -y install protobuf-compiler - - - name: Install & display rust toolchain - run: rustup show - - - name: Check targets are installed correctly - run: rustup target list --installed - - - name: Check all features compilation - run: cargo check --verbose --features try-runtime,runtime-benchmarks --locked - - - name: Run all tests - run: cargo test --features try-runtime,runtime-benchmarks --locked