Add types and methods for participants onboarding module #12

Merged
ashwin merged 9 commits from testnet-onboarding into main 2024-07-16 08:33:42 +00:00
2 changed files with 13 additions and 5 deletions
Showing only changes of commit fa239cf400 - Show all commits

View File

@ -22,7 +22,7 @@ jobs:
path: "./laconicd/" path: "./laconicd/"
repository: cerc-io/laconic2d # TODO: Update to laconicd on repo renaming repository: cerc-io/laconic2d # TODO: Update to laconicd on repo renaming
fetch-depth: 0 fetch-depth: 0
ref: main ref: testnet-onboarding
- name: Environment - name: Environment
run: ls -tlh && env run: ls -tlh && env
@ -61,3 +61,12 @@ jobs:
- name: Run nameservice expiry tests - name: Run nameservice expiry tests
working-directory: laconicd/tests/sdk_tests working-directory: laconicd/tests/sdk_tests
run: ./run-tests.sh test:nameservice-expiry run: ./run-tests.sh test:nameservice-expiry
- name: Start containers (onboarding enabled)
working-directory: laconicd/tests/sdk_tests
env:
ONBOARDING_ENABLED: true
run: docker compose up -d
- name: Run participants onboarding tests
working-directory: laconicd/tests/sdk_tests
run: ./run-tests.sh test:onboarding

View File

@ -15,10 +15,9 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
with: with:
path: "./laconicd/" path: "./laconicd/"
repository: deep-stack/laconic2d repository: cerc-io/laconic2d
token: ${{ secrets.GH_PAT }} # PAT for accessing private laconic2d
fetch-depth: 0 fetch-depth: 0
ref: testnet-onboarding ref: main
- name: Environment - name: Environment
run: ls -tlh && env run: ls -tlh && env
@ -58,6 +57,6 @@ jobs:
env: env:
ONBOARDING_ENABLED: true ONBOARDING_ENABLED: true
run: docker compose up -d run: docker compose up -d
- name: Run nameservice expiry tests - name: Run participants onboarding tests
working-directory: laconicd/tests/sdk_tests working-directory: laconicd/tests/sdk_tests
run: ./run-tests.sh test:onboarding run: ./run-tests.sh test:onboarding