Compare commits

...

8 Commits

Author SHA1 Message Date
Michael Shaw
6c597101ea start built containers 2023-01-24 13:48:55 -05:00
Michael Shaw
90943bf1e6 ./ missing 2023-01-24 13:27:11 -05:00
Michael Shaw
512136400d checkout not preserved between actions 2023-01-24 12:37:28 -05:00
Michael Shaw
c0662cb5f1 diagnostic env step does not support cwd 2023-01-24 12:32:54 -05:00
Michael Shaw
c73dc0d92a diagnostic env step 2023-01-24 12:24:34 -05:00
Michael Shaw
8f20f25e43 diagnostic env step 2023-01-24 12:17:25 -05:00
Michael Shaw
08e369aa64 - -> _ 2023-01-24 11:56:53 -05:00
Michael Shaw
40a78c66bf first pass use tests/sdk-tests/run-tests.sh in github action 2023-01-24 10:38:38 -05:00
2 changed files with 24 additions and 1 deletions

View File

@ -1,4 +1,4 @@
name: Publish onn release
name: Publish on release
on:
release:
types: [published]

View File

@ -81,6 +81,29 @@ jobs:
make test-rpc
if: env.GIT_DIFF
sdk_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Checkout laconic-sdk
uses: actions/checkout@v3
with:
path: "./laconic-sdk/"
repository: cerc-io/laconic-sdk
fetch-depth: 0
- name: Environment
run: ls -tlh && env
- name: build containers scripts
working-directory: tests/sdk_tests
run: ./build-laconicd-container.sh && ./build-sdk-test-container.sh
- name: start containers
working-directory: tests/sdk_tests
run: docker compose up -d
- name: run-tests.sh
working-directory: tests/sdk_tests
run: ./run-tests.sh
# integration_tests:
# runs-on: ubuntu-latest
# steps: