Prathamesh Musale
3fcab10496
Some checks failed
Protobuf / lint (pull_request) Successful in 20s
Build / build (pull_request) Successful in 2m30s
Integration Tests / test-integration (pull_request) Successful in 2m12s
E2E Tests / test-e2e (pull_request) Successful in 3m45s
SDK Tests / sdk_tests_authority_auctions (pull_request) Failing after 5m10s
Unit Tests / test-unit (pull_request) Successful in 1m51s
SDK Tests / sdk_tests_nameservice_expiry (pull_request) Successful in 7m54s
SDK Tests / sdk_tests (pull_request) Failing after 9m34s
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
|