Skip to content

Commit

Permalink
Merge pull request #17 from datachainlab/ci
Browse files Browse the repository at this point in the history
Add e2e test to CI

Signed-off-by: Jun Kimura <[email protected]>
  • Loading branch information
bluele authored Jan 31, 2024
2 parents 27611bc + 67527f0 commit 2da41cf
Showing 1 changed file with 22 additions and 4 deletions.
26 changes: 22 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,35 @@
name: test

on:
push:
branches:
- main
pull_request:

jobs:
relayer:
e2e-test:
runs-on: ubuntu-22.04
env:
SGX_MODE: SW
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
submodules: recursive
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version: '1.20'
- run: make yrly
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
- uses: datachainlab/rust-cache@allow_registry_src_caching
with:
workspaces: |
./lcp
./lcp/enclave
cache-directories: |
~/.cargo/registry/src/**/librocksdb-sys-*
- run: curl -LO https://download.01.org/intel-sgx/sgx-linux/2.19/distro/ubuntu22.04-server/sgx_linux_x64_sdk_2.19.100.3.bin
- run: chmod +x ./sgx_linux_x64_sdk_2.19.100.3.bin
- run: echo -e 'no\n/opt' | ./sgx_linux_x64_sdk_2.19.100.3.bin
- run: make tendermint-images
- run: source /opt/sgxsdk/environment && make e2e-test

0 comments on commit 2da41cf

Please sign in to comment.