Skip to content

try sccache and build #28

try sccache and build

try sccache and build #28

name: Secret Gateway
on:
workflow_dispatch:
push:
branches:
- test-fixes
# push:
# paths:
# - '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
# secret_gateway_tests:
# runs-on: ubuntu-latest
# strategy:
# fail-fast: false
# env:
# RUST_BACKTRACE: full
# RUSTC_WRAPPER: sccache
# RUSTV: stable
# SCCACHE_CACHE_SIZE: 2G
# SCCACHE_DIR: /home/runner/.cache/sccache
# # SCCACHE_RECACHE: 1 # Uncomment this to clear cache, then comment it back out
# services:
# secret:
# image: ghcr.io/scrtlabs/localsecret:v1.13.3
# ports:
# - 1317:1317
# - 5000:5000
# - 9091:9091
# - 26657:26657
# steps:
# - uses: actions/checkout@v2
# - name: Install sccache
# env:
# LINK: https://github.com/mozilla/sccache/releases/download
# SCCACHE_VERSION: v0.2.15
# run: |
# SCCACHE_FILE=sccache-$SCCACHE_VERSION-x86_64-unknown-linux-musl
# mkdir -p $HOME/.local/bin
# curl -L "$LINK/$SCCACHE_VERSION/$SCCACHE_FILE.tar.gz" | tar xz
# mv -f $SCCACHE_FILE/sccache $HOME/.local/bin/sccache
# chmod +x $HOME/.local/bin/sccache
# echo "$HOME/.local/bin" >> $GITHUB_PATH
# - name: Install dependencies
# run: npm --prefix TNLS-Gateways/secret/tests/ install
# - name: Install Rust
# uses: ./.github/actions/install-rust
# with:
# toolchain: stable
# - name: Add wasm toolchain
# run: |
# rustup target add wasm32-unknown-unknown
# - name: Install wasm-opt
# run: sudo apt update && sudo apt install -y binaryen clang
# - name: Cache cargo registry
# uses: actions/cache@v2
# continue-on-error: false
# with:
# path: |
# ~/.cargo/registry
# ~/.cargo/git
# key: ubuntu-latest-cargo-${{ hashFiles('**/Cargo.lock') }}
# restore-keys: |
# ubuntu-latest-cargo-
# - name: Save sccache
# uses: actions/cache@v2
# continue-on-error: false
# with:
# path: /home/runner/.cache/sccache
# key: ubuntu-latest-sccache-${{ hashFiles('**/Cargo.lock') }}
# restore-keys: |
# ubuntu-latest-sccache-
# - name: Start sccache server
# run: sccache --start-server
# - name: Run cargo clippy
# run: cd TNLS-Gateways/secret/ && make clippy
# - name: Run unit tests
# run: cd TNLS-Gateways/secret/ && make unit-test
# - name: Build wasm contract
# run: cd TNLS-Gateways/secret/ && make build-mainnet
# - name: Run integration tests
# run: cd TNLS-Gateways/secret/ && make integration-test
# - name: Print sccache stats
# run: sccache --show-stats
# - name: Stop sccache server
# run: sccache --stop-server || true