Add CI workflows for SDK tests

This commit is contained in:
Prathamesh Musale 2024-03-13 09:12:22 +05:30
parent 946e64d289
commit 70947d1e4f
3 changed files with 118 additions and 0 deletions

View File

@ -0,0 +1,40 @@
name: Tests
on:
pull_request:
push:
branches:
- main
- release/**
jobs:
sdk_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Checkout registry-sdk
uses: actions/checkout@v3
with:
path: "./registry-sdk/"
repository: deep-stack/registry-sdk # Use cerc-io/registry-sdk
fetch-depth: 0
ref: main
- name: Environment
run: ls -tlh && env
- name: Build laconic2d container
working-directory: tests/sdk_tests
run: ./build-laconic2d-container.sh
- name: Build sdk container
working-directory: registry-sdk
run: ./scripts/build-sdk-test-container.sh
- name: Start containers (auctions enabled)
working-directory: tests/sdk_tests
env:
TEST_AUCTION_ENABLED: true
run: docker compose up -d
- name: Run auction tests
working-directory: tests/sdk_tests
run: ./run-tests.sh test:auctions

View File

@ -0,0 +1,40 @@
name: Tests
on:
pull_request:
push:
branches:
- main
- release/**
jobs:
sdk_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Checkout registry-sdk
uses: actions/checkout@v3
with:
path: "./registry-sdk/"
repository: deep-stack/registry-sdk # Use cerc-io/registry-sdk
fetch-depth: 0
ref: main
- name: Environment
run: ls -tlh && env
- name: Build laconic2d container
working-directory: tests/sdk_tests
run: ./build-laconic2d-container.sh
- name: Build sdk container
working-directory: registry-sdk
run: ./scripts/build-sdk-test-container.sh
- name: Start containers (expiry enabled)
working-directory: tests/sdk_tests
env:
TEST_REGISTRY_EXPIRY: true
run: docker compose up -d
- name: Run nameservice expiry tests
working-directory: tests/sdk_tests
run: ./run-tests.sh test:nameservice-expiry

View File

@ -0,0 +1,38 @@
name: Tests
on:
pull_request:
push:
branches:
- main
- release/**
jobs:
sdk_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Checkout registry-sdk
uses: actions/checkout@v3
with:
path: "./registry-sdk/"
repository: deep-stack/registry-sdk # Use cerc-io/registry-sdk
fetch-depth: 0
ref: main
- name: Environment
run: ls -tlh && env
- name: Build laconic2d container
working-directory: tests/sdk_tests
run: ./build-laconic2d-container.sh
- name: Build sdk container
working-directory: registry-sdk
run: ./scripts/build-sdk-test-container.sh
- name: Start containers
working-directory: tests/sdk_tests
run: docker compose up -d
- name: Run tests
working-directory: tests/sdk_tests
run: ./run-tests.sh