registry-sdk/.gitea/workflows/test.yml
Prathamesh Musale 911be08850
All checks were successful
Tests / sdk_tests (push) Successful in 19m43s
Remove unused code and update CI (#9)
Part of https://www.notion.so/Create-laconic-registry-SDK-d3a636d4aba44f7cbba3bd99b7146811

Co-authored-by: neeraj <neeraj.rtly@gmail.com>
Reviewed-on: #9
Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
2024-03-14 09:15:48 +00:00

64 lines
1.7 KiB
YAML

name: Tests
on:
pull_request:
branches:
- '*'
push:
branches:
- main
- release/**
env:
DOCKER_HOST: unix:///var/run/dind.sock
jobs:
sdk_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Checkout laconic2d
uses: actions/checkout@v3
with:
path: "./laconic2d/"
repository: cerc-io/laconic2d
fetch-depth: 0
ref: main
- name: Environment
run: ls -tlh && env
- name: Start dockerd
run: |
dockerd -H $DOCKER_HOST --userland-proxy=false &
sleep 5
- name: Build laconic2d container
working-directory: laconic2d/tests/sdk_tests
run: ./build-laconic2d-container.sh
- name: Build sdk container
run: ./scripts/build-sdk-test-container.sh
- name: Start containers
working-directory: laconic2d/tests/sdk_tests
run: docker compose up -d
- name: Run tests
working-directory: laconic2d/tests/sdk_tests
run: ./run-tests.sh
- name: Start containers (auctions enabled)
working-directory: laconic2d/tests/sdk_tests
env:
TEST_AUCTION_ENABLED: true
run: docker compose up -d
- name: Run auction tests
working-directory: laconic2d/tests/sdk_tests
run: ./run-tests.sh test:auctions
- name: Start containers (expiry enabled)
working-directory: laconic2d/tests/sdk_tests
env:
TEST_REGISTRY_EXPIRY: true
run: docker compose up -d
- name: Run nameservice expiry tests
working-directory: laconic2d/tests/sdk_tests
run: ./run-tests.sh test:nameservice-expiry