Add onboarding test in gitea CI
Some checks failed
Lint & Build / lint_and_build (20.x) (pull_request) Failing after 19s
Tests / sdk_tests (pull_request) Successful in 22m11s

This commit is contained in:
Nabarun 2024-07-16 11:02:54 +05:30
parent b44cc00b7b
commit fa239cf400
2 changed files with 13 additions and 5 deletions

View File

@ -22,7 +22,7 @@ jobs:
path: "./laconicd/"
repository: cerc-io/laconic2d # TODO: Update to laconicd on repo renaming
fetch-depth: 0
ref: main
ref: testnet-onboarding
- name: Environment
run: ls -tlh && env
@ -61,3 +61,12 @@ jobs:
- name: Run nameservice expiry tests
working-directory: laconicd/tests/sdk_tests
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
with:
path: "./laconicd/"
repository: deep-stack/laconic2d
token: ${{ secrets.GH_PAT }} # PAT for accessing private laconic2d
repository: cerc-io/laconic2d
fetch-depth: 0
ref: testnet-onboarding
ref: main
- name: Environment
run: ls -tlh && env
@ -58,6 +57,6 @@ jobs:
env:
ONBOARDING_ENABLED: true
run: docker compose up -d
- name: Run nameservice expiry tests
- name: Run participants onboarding tests
working-directory: laconicd/tests/sdk_tests
run: ./run-tests.sh test:onboarding