Prathamesh Musale
52e8d322fa
Some checks failed
Integration Tests / test-integration (push) Successful in 2m29s
E2E Tests / test-e2e (push) Successful in 4m6s
Unit Tests / test-unit (push) Successful in 2m3s
SDK Tests / sdk_tests_authority_auctions (push) Failing after 6m31s
SDK Tests / sdk_tests_nameservice_expiry (push) Successful in 9m11s
SDK Tests / sdk_tests (push) Failing after 10m14s
Part of [Service provider auctions](https://www.notion.so/Service-provider-auctions-a7b63697d818479493ec145ea6ea3c1c) - Add a new type of auction for service providers - Add a command to release provider auction funds - Remove unused auction module params Co-authored-by: IshaVenikar <ishavenikar7@gmail.com> Co-authored-by: Isha Venikar <ishavenikar@Ishas-MacBook-Air.local> Reviewed-on: #59 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
41 lines
1.0 KiB
YAML
41 lines
1.0 KiB
YAML
name: SDK Tests
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
- release/**
|
|
|
|
jobs:
|
|
sdk_tests_authority_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 laconicd container
|
|
working-directory: tests/sdk_tests
|
|
run: ./build-laconicd-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 authority auction tests
|
|
working-directory: tests/sdk_tests
|
|
run: ./run-tests.sh test:authority-auctions
|