Prathamesh Musale
1956161316
All checks were successful
Integration Tests / test-integration (push) Successful in 2m47s
E2E Tests / test-e2e (push) Successful in 4m18s
Lint / Run golangci-lint (push) Successful in 5m9s
Unit Tests / test-unit (push) Successful in 2m27s
SDK Tests / sdk_tests_nameservice_expiry (push) Successful in 9m9s
SDK Tests / sdk_tests (push) Successful in 9m37s
SDK Tests / sdk_tests_auctions (push) Successful in 14m49s
Part of https://www.notion.so/Port-laconicd-to-cosmos-sdk-v0-50-x-43b30ab4e33a49c5912ebb2871cb777c Reviewed-on: cerc-io/laconic2d#24 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
41 lines
1001 B
YAML
41 lines
1001 B
YAML
name: SDK Tests
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
- release/**
|
|
|
|
jobs:
|
|
sdk_tests_auctions:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Checkout registry-sdk
|
|
uses: actions/checkout@v3
|
|
with:
|
|
path: "./registry-sdk/"
|
|
repository: 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
|