You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
2.8 KiB
86 lines
2.8 KiB
name: Run E2E tests k8s
|
|
|
|
on:
|
|
# push:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
K8S_LOCAL_PORT: ${{ secrets.K8S_LOCAL_PORT }}
|
|
K8S_HOST: ${{ secrets.K8S_HOST }}
|
|
BASTION_HOST: ${{ secrets.BASTION_HOST }}
|
|
K8S_PORT: ${{ secrets.K8S_PORT }}
|
|
USERNAME: ${{ secrets.USERNAME }}
|
|
BASTION_SSH_KEY: ${{secrets.BASTION_SSH_KEY}}
|
|
|
|
jobs:
|
|
push_to_registry:
|
|
name: Push Docker image to Docker Hub
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
release-version: ${{ steps.output-step.outputs.release-version }}
|
|
short-sha: ${{ steps.output-step.outputs.short-sha }}
|
|
steps:
|
|
- name: Check out the repo
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v2
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
- name: Log in to Docker Hub
|
|
uses: docker/login-action@v2
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Extract metadata (tags, labels) for Docker
|
|
id: meta
|
|
uses: docker/metadata-action@v4
|
|
with:
|
|
images: blockscout/blockscout
|
|
|
|
- name: Add SHORT_SHA env property with commit short sha
|
|
run: echo "SHORT_SHA=`echo ${GITHUB_SHA} | cut -c1-8`" >> $GITHUB_ENV
|
|
|
|
- name: Add outputs
|
|
run: |
|
|
echo "::set-output name=short-sha::${{ env.SHORT_SHA }}"
|
|
id: output-step
|
|
|
|
- name: Build and push Docker image
|
|
uses: docker/build-push-action@v3
|
|
with:
|
|
context: .
|
|
file: ./docker/Dockerfile
|
|
push: true
|
|
cache-from: type=registry,ref=blockscout/blockscout:pr-buildcache
|
|
cache-to: type=registry,ref=blockscout/blockscout:pr-buildcache,mode=max
|
|
tags: blockscout/blockscout:pr-${{ env.SHORT_SHA }}
|
|
build-args: |
|
|
CACHE_EXCHANGE_RATES_PERIOD=
|
|
DISABLE_READ_API=false
|
|
API_PATH=
|
|
NETWORK_PATH=
|
|
DISABLE_WEBAPP=false
|
|
DISABLE_WRITE_API=false
|
|
CACHE_ENABLE_TOTAL_GAS_USAGE_COUNTER=
|
|
WOBSERVER_ENABLED=false
|
|
ADMIN_PANEL_ENABLED=false
|
|
CACHE_ADDRESS_WITH_BALANCES_UPDATE_INTERVAL=
|
|
DISABLE_BRIDGE_MARKET_CAP_UPDATER=false
|
|
CACHE_BRIDGE_MARKET_CAP_UPDATE_INTERVAL=
|
|
SOCKET_ROOT=
|
|
|
|
deploy_and_tests:
|
|
needs: push_to_registry
|
|
uses: blockscout/blockscout-ci-cd/.github/workflows/e2e_new.yaml@master
|
|
with:
|
|
blockscoutImage: blockscout/blockscout:pr-${{ needs.push_to_registry.outputs.short-sha }}
|
|
blockscoutIngressHost: e2e-blockscout-$GITHUB_SHA_SHORT
|
|
frontendIngressHost: e2e-blockscout-$GITHUB_SHA_SHORT
|
|
gethIngressHost: e2e-geth-$GITHUB_SHA_SHORT
|
|
scVerifierIngressHost: e2e-sc-verifier-$GITHUB_SHA_SHORT
|
|
secrets: inherit
|
|
|