laconic-sdk/.github/workflows/test.yml

44 lines
1.5 KiB
YAML
Raw Normal View History

2023-02-03 19:59:25 +00:00
name: Tests
on:
pull_request:
push:
branches:
- main
- release/**
jobs:
sdk_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Checkout laconicd
uses: actions/checkout@v3
with:
path: "./laconicd/"
repository: cerc-io/laconicd
fetch-depth: 0
ref: main
- name: Environment
run: ls -tlh && env
- name: build containers scripts
working-directory: laconicd/tests/sdk_tests
run: ./build-laconicd-container.sh
- name: build test-container
run: docker build -t cerc-io/laconic-sdk-tester:local-test -f laconicd/tests/sdk_tests/Dockerfile-sdk .
2023-02-03 19:59:25 +00:00
- name: start containers
working-directory: laconicd/tests/sdk_tests
run: docker compose up -d
2023-02-03 19:59:25 +00:00
- name: run ALL tests
2023-02-09 23:03:31 +00:00
working-directory: laconicd/tests/sdk_tests
2023-02-03 19:59:25 +00:00
run: |
2023-02-10 15:46:44 +00:00
pwd
ls -tla
2023-02-03 19:59:25 +00:00
laconicd_key=$( docker compose exec laconicd echo y | docker compose exec laconicd laconicd keys export mykey --unarmored-hex --unsafe )
2023-02-10 16:09:30 +00:00
echo "KEY"
echo "${laconicd_key}"
2023-02-03 19:59:25 +00:00
cosmos_chain_id=laconic_9000-1
laconicd_rest_endpoint=http://laconicd:1317
laconicd_gql_endpoint=http://laconicd:9473/api
sleep 30s
2023-02-09 22:20:48 +00:00
docker compose exec sdk-test-runner sh -c "COSMOS_CHAIN_ID=${cosmos_chain_id} LACONICD_REST_ENDPOINT=${laconicd_rest_endpoint} LACONICD_GQL_ENDPOINT=${laconicd_gql_endpoint} PRIVATE_KEY=${laconicd_key} yarn test"