Merge pull request #1132 from skalenetwork/sync-stable #7761
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
name: Test | |
on: [push] | |
env: | |
ETH_PRIVATE_KEY: ${{ secrets.ETH_PRIVATE_KEY }} | |
SCHAIN_TYPE: ${{ secrets.SCHAIN_TYPE }} | |
MANAGER_TAG: "1.10.0-v1.10.0.0" | |
IMA_TAG: "1.3.4-beta.5" | |
SGX_WALLET_TAG: "1.83.0-beta.5" | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
PYTHON_VERSION: 3.11 | |
jobs: | |
test_core: | |
runs-on: self-hosted | |
env: | |
ETH_PRIVATE_KEY: ${{ secrets.ETH_PRIVATE_KEY }} | |
ENDPOINT: http://127.0.0.1:8545 | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
SCHAIN_TYPE: ${{ secrets.SCHAIN_TYPE }} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Install python dependencies | |
run: | | |
source ../.venv/bin/activate | |
uv pip install -r requirements.txt --prerelease=allow | |
uv pip install -r requirements-dev.txt | |
- name: Lint with flake8 | |
run: uv run flake8 . | |
- name: Launch anvil node | |
run: | | |
docker run -d --network host --name anvil ghcr.io/foundry-rs/foundry anvil && sleep 5 && docker logs anvil --tail 1000 | |
- name: Deploy manager & ima contracts | |
run: | | |
bash ./helper-scripts/deploy_test_ima.sh | |
- name: Show stats before tests | |
if: always() | |
run: | | |
lsblk -f | |
free -h | |
- name: Run core tests | |
run: | | |
source ../.venv/bin/activate | |
bash ./scripts/run_core_tests.sh | |
- name: Cleanup docker artifacts | |
run: | | |
docker rm -f $(docker ps -aq) | |
- name: Show stats after core tests | |
if: always() | |
run: | | |
lsblk -f | |
free -h | |
- name: Run firewall tests | |
run: | | |
bash ./scripts/run_firewall_test.sh | |
- name: Show stats after firewall tests | |
if: always() | |
run: | | |
lsblk -f | |
free -h | |
- name: Cleanup docker artifacts | |
if: always() | |
run: | | |
docker rm -f $(docker ps -aq) | |
- name: Run codecov | |
run: | | |
source ../.venv/bin/activate | |
codecov -t $CODECOV_TOKEN |