FE - Update #87
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: FE - Update | |
on: | |
workflow_dispatch: | |
inputs: | |
featurenet-name: | |
description: 'Name of featurenet' | |
required: true | |
type: string | |
ref: | |
description: 'git ref: full commit hash, branch, tag' | |
required: true | |
type: string | |
rolling-update-partition: | |
description: | | |
A number from 0 to N-1, where N is a number of validators. | |
All aleph-node-validator-N with an ordinal N that is great than or equal to the partition | |
will be updated. If not specified, all nodes will be updated. | |
required: true | |
default: "0" | |
type: string | |
short-session: | |
description: 'Use short session aleph-node binary' | |
required: true | |
type: boolean | |
workflow_call: | |
inputs: | |
featurenet-name: | |
description: 'Name of featurenet' | |
required: true | |
type: string | |
ref: | |
description: 'git ref: full commit hash, branch, tag' | |
required: true | |
type: string | |
rolling-update-partition: | |
description: | | |
A number from 0 to N-1, where N is a number of validators. | |
All aleph-node-validator-N with an ordinal N that is great than or equal to the partition | |
will be updated. If not specified, all nodes will be updated. | |
required: true | |
default: "0" | |
type: string | |
short-session: | |
description: 'Use short session aleph-node binary' | |
required: true | |
type: boolean | |
jobs: | |
validate-inputs: | |
name: Validate inputs | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Validate inputs | |
shell: bash | |
run: | | |
if [[ ! '${{ inputs.featurenet-name }}' =~ ^[a-z0-9][a-z0-9\-]{4,48}$ ]]; then | |
echo '!!! Invalid featurenet name' | |
exit 1 | |
fi | |
if [[ ! '${{ inputs.ref }}' =~ ^[a-zA-Z0-9][a-zA-Z0-9\._\-]{1,48}$ ]]; then | |
echo "!!! Invalid ref" | |
exit 1 | |
fi | |
check-vars-and-secrets: | |
name: Check vars and secrets | |
uses: ./.github/workflows/_check-vars-and-secrets.yml | |
secrets: inherit | |
get-full-docker-image-path: | |
name: Get full aleph-node full docker path path | |
needs: [check-vars-and-secrets] | |
runs-on: ubuntu-20.04 | |
outputs: | |
fqdn-image: ${{ steps.get-fqdns.outputs.fqdn-image }} | |
ref: ${{ steps.get-fqdns.outputs.ref }} | |
image-exists: ${{ steps.get-fqdns.outputs.image-exists }} | |
steps: | |
- name: Get aleph-node fqdn path | |
id: get-fqdns | |
uses: Cardinal-Cryptography/github-actions/get-aleph-node-fqdn-image@v7 | |
with: | |
ref: ${{ inputs.ref }} | |
test-binary: ${{ inputs.short-session == true && 'true' || 'false' }} | |
ecr-dev-node-repo: ${{ vars.ECR_DEV_ALEPH_NODE_REPO }} | |
ecr-prod-node-repo: ${{ vars.ECR_ALEPH_NODE_REPO }} | |
ecr-chain-bootstrapper-repo: ${{ vars.ECR_CHAIN_BOOTSTRAPPER_REPO }} | |
only-aleph-nope-production-repo: 'false' | |
build-aleph-node: | |
name: Build aleph-node | |
if: ${{ needs.get-full-docker-image-path.outputs.image-exists != 'true' }} | |
needs: [get-full-docker-image-path] | |
uses: ./.github/workflows/_build-aleph-node.yml | |
with: | |
ref: ${{ needs.get-full-docker-image-path.outputs.ref }} | |
production: ${{ !inputs.short-session }} | |
push-aleph-node-image-to-ecr: | |
name: Build and push aleph-node image to ECR | |
if: ${{ needs.get-full-docker-image-path.outputs.image-exists != 'true' }} | |
needs: | |
- get-full-docker-image-path | |
- build-aleph-node | |
uses: ./.github/workflows/_push-image-to-ecr.yml | |
secrets: inherit | |
with: | |
binary-artifact-name: ${{ needs.build-aleph-node.outputs.artifact-name-binary }} | |
docker-image-name: ${{ needs.get-full-docker-image-path.outputs.fqdn-image }} | |
binary-name: aleph-node | |
docker-file-path: ./docker/Dockerfile | |
update-featurenet: | |
needs: | |
- get-full-docker-image-path | |
- push-aleph-node-image-to-ecr | |
# to prevent this job to be skipped when on of the parent jobs is skipped | |
if: ${{ !cancelled() }} | |
name: Update featurenet | |
uses: Cardinal-Cryptography/github-actions/.github/workflows/_featurenet-update.yml@v7 | |
secrets: inherit | |
with: | |
featurenet-name: ${{ inputs.featurenet-name }} | |
aleph-node-image: ${{ needs.get-full-docker-image-path.outputs.fqdn-image }} | |
rolling-update-partition: ${{ inputs.rolling-update-partition }} |