fix: fix broken backward compatibility of storage deposit logic #501
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
pull_request: | |
name: Tests | |
jobs: | |
test: | |
name: Test suite (mainnet) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone the repository | |
uses: actions/checkout@v4 | |
- name: Install cargo-make | |
run: cargo make -V || cargo install cargo-make | |
- name: Install sandbox | |
run: | | |
if [[ ! -f ${{ env.NEAR_SANDBOX_BIN_PATH }} ]]; then | |
rm -rf nearcore | |
git clone --depth 1 --branch 1.35.0 https://github.com/near/nearcore | |
cd nearcore | |
make sandbox-release | |
cp target/release/near-sandbox ${{ env.NEAR_SANDBOX_BIN_PATH }} | |
cd ../ | |
rm -rf nearcore | |
fi | |
- name: Test mainnet | |
run: cargo make --profile mainnet test | |
test-build: | |
name: Build and diff | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone the repository | |
uses: actions/checkout@v4 | |
- name: Build | |
run: ./build.sh | |
- name: Diff | |
run: | | |
git diff | |
git status | |
changed_files=$(git status --porcelain --untracked-files=no | wc -l) | |
if [ $changed_files -gt 0 ]; then | |
echo 'contract changed, please rebuild contract' | |
exit 1 | |
fi | |
env: | |
NEAR_SANDBOX_BIN_PATH: /usr/local/bin/near-sandbox | |
CARGO_TERM_COLOR: always | |
CARGO_INCREMENTAL: 0 |