Feat/V5 WIP #125
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 Flow | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '18' | |
- name: Install dependencies | |
run: npm install | |
- name: Run build | |
run: npm run build | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '18' | |
- name: Install dependencies | |
run: npm install | |
- name: Run lint | |
run: npm run lint | |
test_system: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '18.19.0' | |
- name: Cache node_modules | |
uses: actions/cache@v2 | |
env: | |
cache-name: cache-node-modules | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-test-integration-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: ${{ runner.os }}-test-integration-${{ env.cache-name }}- | |
- name: Set ADDRESS_FILE | |
run: echo "ADDRESS_FILE=${HOME}/.ocean/ocean-contracts/artifacts/address.json" >> $GITHUB_ENV | |
- name: Checkout Barge | |
uses: actions/checkout@v3 | |
with: | |
repository: 'oceanprotocol/barge' | |
path: 'barge' | |
ref: 'feature/nodes' | |
- name: Login to Docker Hub | |
if: ${{ env.DOCKERHUB_PASSWORD && env.DOCKERHUB_USERNAME }} | |
run: | | |
echo "Login to Docker Hub" | |
echo "$DOCKERHUB_PASSWORD" | docker login -u "$DOCKERHUB_USERNAME" --password-stdin | |
env: | |
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | |
DOCKERHUB_PASSWORD: ${{ secrets.DOCKERHUB_PASSWORD }} | |
- name: Run Barge | |
working-directory: ${{ github.workspace }}/barge | |
run: | | |
bash -x start_ocean.sh --no-dashboard --with-c2d 2>&1 > start_ocean.log & | |
- run: npm ci | |
- run: npm run build | |
- run: docker image ls | |
- name: Delete default runner images | |
run: | | |
docker image rm node:20 | |
docker image rm node:20-alpine | |
docker image rm node:18 | |
docker image rm node:18-alpine | |
docker image rm node:16 | |
docker image rm node:16-alpine | |
docker image rm debian:10 | |
docker image rm debian:11 | |
docker image rm ubuntu:22.04 | |
docker image rm ubuntu:20.04 | |
docker image rm moby/buildkit:latest | |
rm -rf /usr/share/swift/ | |
- name: Wait for contracts deployment and C2D cluster to be ready | |
working-directory: ${{ github.workspace }}/barge | |
run: | | |
for i in $(seq 1 250); do | |
sleep 10 | |
[ -f "$HOME/.ocean/ocean-contracts/artifacts/ready" -a -f "$HOME/.ocean/ocean-c2d/ready" ] && break | |
done | |
- name: docker logs | |
run: docker logs ocean_ocean-contracts_1 && docker logs ocean_kindcluster_1 && docker logs ocean_computetodata_1 && docker logs ocean_typesense_1 | |
if: ${{ failure() }} | |
- name: Checkout Ocean Node | |
uses: actions/checkout@v3 | |
with: | |
repository: 'oceanprotocol/ocean-node' | |
path: 'ocean-node' | |
ref: 'develop' | |
- name: Start Ocean Node | |
working-directory: ${{ github.workspace }}/ocean-node | |
run: | | |
npm ci | |
npm run build | |
npm run start & | |
env: | |
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }} | |
IPFS_GATEWAY: http://172.15.0.16:8080/ | |
ARWEAVE_GATEWAY: https://arweave.net/ | |
P2P_ipV4BindTcpPort: 8000 | |
HTTP_API_PORT: 8001 | |
RPCS: '{ "8996": {"rpc": "http://127.0.0.1:8545", "chainId": 8996, "network": "development", "chunkSize": 100} }' | |
DB_URL: 'http://localhost:8108/?apiKey=xyz' | |
FEE_TOKENS: '{ "1": "0x967da4048cD07aB37855c090aAF366e4ce1b9F48", "137": "0x282d8efCe846A88B159800bd4130ad77443Fa1A1", "80001": "0xd8992Ed72C445c35Cb4A2be468568Ed1079357c8", "56": "0xDCe07662CA8EbC241316a15B611c89711414Dd1a" }' | |
FEE_AMOUNT: '{ "amount": 1, "unit": "MB" }' | |
AUTHORIZED_DECRYPTERS: '["0xe2DD09d719Da89e5a3D0F2549c7E24566e947260"]' | |
ALLOWED_ADMINS: '["0xe2DD09d719Da89e5a3D0F2549c7E24566e947260"]' | |
- name: Check Ocean Node is running | |
run: | | |
for i in $(seq 1 30); do | |
if curl --output /dev/null --silent --head --fail "http://localhost:8001"; then | |
echo "Ocean Node is up" | |
exit 0 | |
fi | |
sleep 10 | |
done | |
echo "Ocean Node did not start in time" | |
exit 1 | |
- name: Run system tests | |
run: npm run test:system | |