march 31 - 1.0.10 #33
This file contains hidden or 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: Swarm Leak Ubuntu - Get 2 | |
| on: | |
| push: | |
| branches: [ dev ] | |
| pull_request: | |
| branches: [ dev ] | |
| jobs: | |
| swarm-integration-tests-get-ubuntu: | |
| name: Swarm Integration Leak Tests Ubuntu - Get 2 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.24' | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| - name: Set up zsh | |
| run: | | |
| sudo apt-get remove --purge man-db | |
| sudo apt-get -y install zsh | |
| - name: Install fdp-play | |
| run: | | |
| npm install -g @fairdatasociety/fdp-play | |
| fdp-play --version | |
| - name: Install swarm-cli | |
| run: | | |
| npm install --global @ethersphere/swarm-cli | |
| swarm-cli --version | |
| - name: Start fdp-play environment | |
| run: | | |
| fdp-play start --detach | |
| - name: Run swarm integration tests - get 2 | |
| run: | | |
| make node_locnet_memory TEST=gc-put-get-sync | |
| - name: Stop fdp-play environment | |
| if: always() | |
| run: | | |
| fdp-play stop | |