Merge pull request #33 from autonomys/sync-to-latest-release #7
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: Run E2E tests k8s | ||
on: | ||
workflow_dispatch: | ||
workflow_call: | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
publish_image: | ||
name: Publish Docker image | ||
<<<<<<< HEAD | ||
uses: './.github/workflows/publish-image.yml' | ||
secrets: inherit | ||
with: | ||
# NOTE: by default the image will be built with type=ref,event=tag; so we don't need to specify it here | ||
tags: | | ||
type=raw,value=e2e | ||
======= | ||
runs-on: ubuntu-latest | ||
outputs: | ||
shortSha: ${{ steps.output-step.outputs.short-sha }} | ||
tags: ${{ steps.meta.outputs.tags }} | ||
steps: | ||
- name: Check out the repo | ||
uses: actions/checkout@v3 | ||
- name: Inject slug/short variables | ||
uses: rlespinasse/github-slug-action@v4.4.1 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
# Will automatically make nice tags, see the table here https://github.com/docker/metadata-action#basic | ||
- name: Docker meta | ||
id: meta | ||
uses: docker/metadata-action@v4 | ||
with: | ||
images: ghcr.io/blockscout/frontend | ||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- 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.GITHUB_EVENT_PULL_REQUEST_HEAD_SHA_SHORT }}" | ||
id: output-step | ||
- name: Build and push | ||
uses: docker/build-push-action@v3 | ||
with: | ||
context: . | ||
file: ./Dockerfile | ||
push: true | ||
cache-from: type=gha | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
build-args: | | ||
GIT_COMMIT_SHA=${{ env.SHORT_SHA }} | ||
GIT_TAG=${{ github.ref_type == 'tag' && github.ref_name || '' }} | ||
>>>>>>> subspace-frontend | ||
deploy_e2e: | ||
name: Deploy E2E instance | ||
needs: publish_image | ||
runs-on: ubuntu-latest | ||
permissions: write-all | ||
steps: | ||
- name: Get Vault credentials | ||
id: retrieve-vault-secrets | ||
uses: hashicorp/vault-action@v2.4.1 | ||
with: | ||
url: https://vault.k8s.blockscout.com | ||
role: ci-dev | ||
path: github-jwt | ||
method: jwt | ||
tlsSkipVerify: false | ||
exportToken: true | ||
secrets: | | ||
ci/data/dev/github token | WORKFLOW_TRIGGER_TOKEN ; | ||
- name: Trigger deploy | ||
uses: convictional/trigger-workflow-and-wait@v1.6.1 | ||
with: | ||
owner: blockscout | ||
repo: deployment-values | ||
github_token: ${{env.WORKFLOW_TRIGGER_TOKEN}} | ||
workflow_file_name: deploy_blockscout.yaml | ||
ref: main | ||
wait_interval: 30 | ||
client_payload: '{ "instance": "dev", "globalEnv": "e2e"}' | ||
test: | ||
name: Run tests | ||
needs: deploy_e2e | ||
uses: blockscout/blockscout-ci-cd/.github/workflows/e2e_new.yaml@master | ||
secrets: inherit |