misc #35
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: Secret Gateway | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- test-fixes | |
# push: | |
# paths: | |
# - 'TNLS-Gateways/secret/**' | |
defaults: | |
run: | |
working-directory: TNLS-Gateways/secret | |
env: | |
CARGO_TERM_COLOR: always | |
# RUSTFLAGS: -Dwarnings | |
# RUSTDOCFLAGS: -Dwarnings | |
SCCACHE_GHA_ENABLED: "true" | |
RUSTC_WRAPPER: "sccache" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- stable | |
target: | |
- x86_64-unknown-linux-gnu | |
- wasm32-unknown-unknown | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo | |
target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: ${{ runner.os }}-cargo- | |
- uses: mozilla-actions/[email protected] | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
target: ${{ matrix.target }} | |
- run: cargo build --target ${{ matrix.target }} --no-default-features --release | |
unit-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- stable | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo | |
target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: ${{ runner.os }}-cargo- | |
- uses: mozilla-actions/[email protected] | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
- run: cargo test --release | |
integration_tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- stable | |
services: | |
secret: | |
image: ghcr.io/scrtlabs/localsecret:v1.13.3 | |
ports: | |
- 1317:1317 | |
- 5000:5000 | |
- 9091:9091 | |
- 26657:26657 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo | |
target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: ${{ runner.os }}-cargo- | |
- uses: mozilla-actions/[email protected] | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
- name: Install dependencies | |
run: npm --prefix tests/ install | |
- name: Install wasm-opt | |
run: sudo apt update && sudo apt install -y binaryen clang | |
- name: Build wasm contract | |
run: make build-mainnet | |
- name: Run integration tests | |
run: make integration-test |