2024-03-13 06:19:15 +00:00
|
|
|
name: SDK Tests
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
- release/**
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
sdk_tests:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Checkout registry-sdk
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
path: "./registry-sdk/"
|
2024-03-14 09:15:15 +00:00
|
|
|
repository: cerc-io/registry-sdk
|
2024-03-13 06:19:15 +00:00
|
|
|
fetch-depth: 0
|
|
|
|
ref: main
|
|
|
|
- name: Environment
|
|
|
|
run: ls -tlh && env
|
|
|
|
|
2024-04-01 09:57:26 +00:00
|
|
|
- name: Build laconicd container
|
2024-03-13 06:19:15 +00:00
|
|
|
working-directory: tests/sdk_tests
|
2024-04-01 09:57:26 +00:00
|
|
|
run: ./build-laconicd-container.sh
|
2024-03-13 06:19:15 +00:00
|
|
|
|
|
|
|
- name: Build sdk container
|
|
|
|
working-directory: registry-sdk
|
|
|
|
run: ./scripts/build-sdk-test-container.sh
|
|
|
|
|
|
|
|
- name: Start containers
|
|
|
|
working-directory: tests/sdk_tests
|
|
|
|
run: docker compose up -d
|
|
|
|
|
|
|
|
- name: Run tests
|
|
|
|
working-directory: tests/sdk_tests
|
|
|
|
run: ./run-tests.sh
|