Actualize build #330
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: Build and push image to ECR | |
on: | |
push: | |
branches: | |
- 'feature/**' | |
env: | |
PROFILE: release | |
ECR_REPOSITORY: pos-network-node | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
concurrency: dev | |
permissions: | |
contents: read | |
id-token: write | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cache cargo registry | |
uses: actions/cache@v3 | |
continue-on-error: false | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: | | |
${{ runner.os }}-cargo- | |
- name: configure aws credentials | |
uses: aws-actions/configure-aws-credentials@v2 | |
with: | |
role-to-assume: arn:aws:iam::${{ vars.DEV_NETWORK_AWS_ACCOUNT_ID }}:role/github | |
role-session-name: ${{ github.event.repository.name }} | |
aws-region: us-west-2 | |
- name: Confiure environment variables | |
run: | | |
echo "GITHUB_SHA=${GITHUB_SHA:0:7}" >> ${GITHUB_ENV} | |
echo "AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID}" >> ${GITHUB_ENV} | |
echo "AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY}" >> ${GITHUB_ENV} | |
echo "AWS_SESSION_TOKEN=${AWS_SESSION_TOKEN}" >> ${GITHUB_ENV} | |
echo "CERE_RUNTIME=cere_runtime.compact.compressed.${GITHUB_SHA:0:7}.wasm" >> ${GITHUB_ENV} | |
echo "CERE_DEV_RUNTIME=cere_dev_runtime.compact.compressed.${GITHUB_SHA:0:7}.wasm" >> ${GITHUB_ENV} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to Amazon ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v1 | |
- name: Build and push docker image to ECR | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
push: true | |
build-args: | | |
"AWS_ACCESS_KEY_ID=${{ env.AWS_ACCESS_KEY_ID }}" | |
"AWS_SECRET_ACCESS_KEY=${{ env.AWS_SECRET_ACCESS_KEY }}" | |
"AWS_SESSION_TOKEN=${{ env.AWS_SESSION_TOKEN }}" | |
"SCCACHE_REGION=us-west-2" | |
"SCCACHE_BUCKET=cere-blockchain-sccache" | |
tags: | | |
${{ steps.login-ecr.outputs.registry }}/pos-network-node:${{ env.GITHUB_SHA }} | |
${{ steps.login-ecr.outputs.registry }}/pos-network-node:dev-latest | |
- name: Copy wasm artifacts from the image | |
run: | | |
CONTAINER_ID=$(docker create ${{ steps.login-ecr.outputs.registry }}/pos-network-node:${{ env.GITHUB_SHA }}) | |
docker cp "${CONTAINER_ID}:/home/cere/cere-runtime-artifacts/cere_runtime.compact.compressed.wasm" "./${{ env.CERE_RUNTIME }}" | |
docker cp "${CONTAINER_ID}:/home/cere/cere-dev-runtime-artifacts/cere_dev_runtime.compact.compressed.wasm" "./${{ env.CERE_DEV_RUNTIME }}" | |
- name: Upload cere-runtime wasm artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "cere_runtime.compact.compressed.${{ env.GITHUB_SHA }}.wasm" | |
path: "./${{ env.CERE_RUNTIME }}" | |
- name: Upload cere-dev-runtime wasm artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "cere_dev_runtime.compact.compressed.${{ env.GITHUB_SHA }}.wasm" | |
path: "./${{ env.CERE_DEV_RUNTIME }}" |