-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make docker image build dependent on passing test
- Loading branch information
1 parent
a09b692
commit 3662b8f
Showing
4 changed files
with
210 additions
and
210 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,210 @@ | ||
name: Continuous Integration | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- "TNLS-Relayers/**" | ||
- "TNLS-Gateways/public-gateway/**" | ||
- "TNLS-Gateways/secret/**" | ||
- ".github/workflows/ci.yml" | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- "TNLS-Relayers/**" | ||
- "TNLS-Gateways/public-gateway/**" | ||
- "TNLS-Gateways/secret/**" | ||
- ".github/workflows/ci.yml" | ||
|
||
jobs: | ||
foundry_tests: | ||
name: Foundry Tests | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Install Foundry | ||
uses: foundry-rs/foundry-toolchain@v1 | ||
with: | ||
version: nightly | ||
|
||
- name: Install forge dependencies | ||
working-directory: TNLS-Gateways/public-gateway | ||
run: forge install | ||
|
||
- name: Run tests | ||
working-directory: TNLS-Gateways/public-gateway | ||
run: forge test -vvv | ||
|
||
- name: Check gas snapshots | ||
working-directory: TNLS-Gateways/public-gateway | ||
run: forge snapshot --check --tolerance 1 | ||
|
||
secret_gateway_tests: | ||
name: Secret Gateway Tests | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
rust: | ||
- stable | ||
target: | ||
- x86_64-unknown-linux-gnu | ||
- wasm32-unknown-unknown | ||
env: | ||
CARGO_TERM_COLOR: always | ||
SCCACHE_GHA_ENABLED: "true" | ||
RUSTC_WRAPPER: "sccache" | ||
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 }} | ||
|
||
- name: Build | ||
working-directory: TNLS-Gateways/secret | ||
run: cargo build --target ${{ matrix.target }} --no-default-features --release | ||
|
||
secret_unit_tests: | ||
name: Secret Gateway Unit Tests | ||
runs-on: ubuntu-latest | ||
needs: secret_gateway_tests | ||
strategy: | ||
matrix: | ||
rust: | ||
- stable | ||
env: | ||
CARGO_TERM_COLOR: always | ||
SCCACHE_GHA_ENABLED: "true" | ||
RUSTC_WRAPPER: "sccache" | ||
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: Run Unit Tests | ||
working-directory: TNLS-Gateways/secret | ||
run: cargo test --release | ||
|
||
secret_integration_tests: | ||
name: Secret Gateway Integration Tests | ||
runs-on: ubuntu-latest | ||
needs: secret_unit_tests | ||
services: | ||
secret: | ||
image: ghcr.io/scrtlabs/localsecret:v1.13.3 | ||
ports: | ||
- 1317:1317 | ||
- 5000:5000 | ||
- 9091:9091 | ||
- 26657:26657 | ||
env: | ||
CARGO_TERM_COLOR: always | ||
SCCACHE_GHA_ENABLED: "true" | ||
RUSTC_WRAPPER: "sccache" | ||
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: stable | ||
target: wasm32-unknown-unknown | ||
|
||
- name: Install dependencies | ||
working-directory: TNLS-Gateways/secret | ||
run: npm --prefix tests/ install | ||
|
||
- name: Install latest Binaryen | ||
run: | | ||
BINARYEN_VERSION=version_118 | ||
wget https://github.com/WebAssembly/binaryen/releases/download/${BINARYEN_VERSION}/binaryen-${BINARYEN_VERSION}-x86_64-linux.tar.gz | ||
tar -xzf binaryen-${BINARYEN_VERSION}-x86_64-linux.tar.gz | ||
sudo mv binaryen-${BINARYEN_VERSION} /usr/local/binaryen | ||
echo "/usr/local/binaryen/bin" >> $GITHUB_PATH | ||
- name: Verify installation | ||
run: wasm-opt --version | ||
|
||
- name: Build wasm contract | ||
working-directory: TNLS-Gateways/secret | ||
run: make build-mainnet | ||
|
||
- name: Run integration tests | ||
working-directory: TNLS-Gateways/secret | ||
run: make integration-test | ||
|
||
build_and_push: | ||
name: Build and Push Docker Image | ||
runs-on: ubuntu-latest | ||
needs: | ||
- foundry_tests | ||
- secret_integration_tests | ||
env: | ||
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | ||
IMAGE_NAME: secretpath | ||
IMAGE_TAG: latest | ||
DOCKER_BUILDKIT: 1 | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Cache Docker layers | ||
uses: actions/cache@v3 | ||
with: | ||
path: /tmp/.buildx-cache | ||
key: ${{ runner.os }}-buildx-${{ github.sha }} | ||
restore-keys: | | ||
${{ runner.os }}-buildx- | ||
- name: Log in to Docker Hub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Build and Push Docker Image | ||
working-directory: TNLS-Relayers | ||
run: | | ||
docker compose build --pull | ||
docker compose push |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.