misc: refactor exports and fix dependencies in some crates #680
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
- uses: datachainlab/rust-cache@allow_registry_src_caching | |
with: | |
workspaces: | | |
. | |
./enclave | |
cache-directories: | | |
~/.cargo/registry/src/**/librocksdb-sys-* | |
- run: make lint-tools | |
- run: make lint | |
relayer: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: '1.20' | |
- run: make yrly | |
sdk-test: | |
runs-on: ubuntu-22.04 | |
env: | |
SGX_MODE: SW | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
- uses: datachainlab/rust-cache@allow_registry_src_caching | |
with: | |
workspaces: | | |
. | |
./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: source /opt/sgxsdk/environment && make -B | |
- run: source /opt/sgxsdk/environment && make test | |
- run: source /opt/sgxsdk/environment && make integration-test |