From 5dbeb3c371a3df392f0528b88860ec29902de1b4 Mon Sep 17 00:00:00 2001 From: Lars Lubkoll <11710767+lubkoll@users.noreply.github.com> Date: Thu, 22 Aug 2024 13:51:24 +0000 Subject: [PATCH] [CI] Add cachepot -- part2: use cache --- .github/workflows/all_checks_osmosis.yml | 21 +++++++++++---------- .github/workflows/cargo_build_cache.yml | 9 ++++++--- .github/workflows/rust_basic.yml | 21 ++++++++++++++------- .github/workflows/test_tube.yml | 4 ++++ 4 files changed, 35 insertions(+), 20 deletions(-) diff --git a/.github/workflows/all_checks_osmosis.yml b/.github/workflows/all_checks_osmosis.yml index 6ba681769..67064ac49 100644 --- a/.github/workflows/all_checks_osmosis.yml +++ b/.github/workflows/all_checks_osmosis.yml @@ -3,6 +3,10 @@ name: Test Tube (osmosis) on: workflow_call: inputs: + unittest: + required: false + default: false + type: boolean proptest: required: false default: false @@ -32,13 +36,11 @@ jobs: uses: actions/cache/restore@v4 with: path: | - ~/.cache/cachepot ~/.cargo ~/go - ~/target - key: ${{ runner.os }}-cargo-osmosis-${{github.sha}} + key: ${{ runner.os }}-cargo-c1-osmosis-${{github.sha}} restore-keys: ${{ runner.os }}-cargo-osmosis - - name: Update PATH and RUSTC_WRAPPER + - name: Update PATH run: echo "$HOME/.cargo/bin" >> $GITHUB_PATH - name: Install cachepot run: test -e $HOME/.cargo/bin/cachepot && echo "cachepot found -- skipping install" || cargo install --git https://github.com/paritytech/cachepot @@ -47,7 +49,8 @@ jobs: - name: Rust lint run: cargo clippy --features test-tube --all-targets -- -D warnings working-directory: smart-contracts/osmosis - - name: Unit tests + - if: inputs.unittest + name: Unit tests run: cargo unit-test working-directory: smart-contracts/osmosis - name: Build merkle-incentives @@ -74,14 +77,12 @@ jobs: env: PROPTEST_CASES: 10 working-directory: smart-contracts/osmosis/contracts/cl-vault - - name: Store dependencies - if: inputs.store_deps + - if: inputs.store_deps + name: Store dependencies uses: actions/cache/save@v4 with: path: | - ~/.cache/cachepot ~/.cargo ~/go - ~/target - key: ${{ runner.os }}-cargo-osmosis-${{github.sha}} + key: ${{ runner.os }}-cargo-c1-osmosis-${{github.sha}} diff --git a/.github/workflows/cargo_build_cache.yml b/.github/workflows/cargo_build_cache.yml index 1921ab46b..1d1b107cc 100644 --- a/.github/workflows/cargo_build_cache.yml +++ b/.github/workflows/cargo_build_cache.yml @@ -7,6 +7,9 @@ on: required: true type: string +env: + CARGO_TARGET_DIR: ~/target + jobs: store-build-cache: runs-on: ubuntu-latest @@ -22,11 +25,11 @@ jobs: ~/.cache/cachepot ~/.cargo ~/go - smart-contracts/${{ inputs.workspace }}/**/target + ~/target key: ${{ runner.os }}-cargo-${{ inputs.workspace }}-${{github.sha}} restore-keys: ${{ runner.os }}-cargo-${{ inputs.workspace }} - name: Install cachepot - run: test -e $HOME/.cargo/bin/cachepot && echo "cachepot found -- skipping install" || cargo install --git https://github.com/paritytech/cachepot + run: test -e ~/.cargo/bin/cachepot && echo "cachepot found -- skipping install" || cargo install --git https://github.com/paritytech/cachepot - name: Rust check run: cargo check --all-targets --features test-tube working-directory: smart-contracts/${{ inputs.workspace }} @@ -39,5 +42,5 @@ jobs: ~/.cache/cachepot ~/.cargo ~/go - smart-contracts/${{ inputs.workspace }}/**/target + ~/target key: ${{ runner.os }}-cargo-${{ inputs.workspace }}-${{github.sha}} diff --git a/.github/workflows/rust_basic.yml b/.github/workflows/rust_basic.yml index 2e5549cdc..c71caa89d 100644 --- a/.github/workflows/rust_basic.yml +++ b/.github/workflows/rust_basic.yml @@ -14,6 +14,10 @@ on: default: true type: boolean +env: + RUSTC_WRAPPER: cachepot + CARGO_TARGET_DIR: ~/target + jobs: checks: runs-on: ubuntu-latest @@ -28,16 +32,19 @@ jobs: path: | ~/.cargo ~/go - smart-contracts/${{ inputs.workspace }}/**/target - key: ${{ runner.os }}-cargo-${{ inputs.workspace }}-$GITHUB_SHA - restore-keys: ${{ runner.os }}-cargo-${{ inputs.workspace }} + key: ${{ runner.os }}-cargo-c1-osmosis-${{github.sha}} + restore-keys: | + ${{ runner.os }}-cargo-c1-osmosis + # fail-on-cache-miss: true + - name: Update PATH + run: echo "$HOME/.cargo/bin" >> $GITHUB_PATH - name: Rust lint - run: cargo lint - working-directory: smart-contracts/${{ inputs.workspace }}/${{ inputs.target }} + run: cargo clippy --features test-tube --all-targets -- -D warnings + working-directory: smart-contracts/${{ inputs.workspace }} - name: Rust format check run: cargo fmt --all -- --check working-directory: smart-contracts/${{ inputs.workspace }}/${{ inputs.target }} - - name: Run unit-tests - if: inputs.unit_tests + - if: inputs.unit_tests + name: Run unit-tests run: cargo unit-test working-directory: smart-contracts/${{ inputs.workspace }}/${{ inputs.target }} diff --git a/.github/workflows/test_tube.yml b/.github/workflows/test_tube.yml index 2cb68d52c..b94245b19 100644 --- a/.github/workflows/test_tube.yml +++ b/.github/workflows/test_tube.yml @@ -24,5 +24,9 @@ jobs: uses: ./.github/workflows/all_checks_osmosis.yml if: github.event_name == 'push' with: + unittest: true proptest: true store_deps: true + pre-commit: + uses: ./.github/workflows/all_checks_osmosis.yml + if: github.event_name == 'pull_request'