fix(epoch-oracle): activate validators whose epoch was skipped on sta… #1535
This file contains hidden or 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 docker images | |
| 'on': | |
| push: | |
| paths-ignore: | |
| - '**/*.md' | |
| tags: | |
| - 'v[0-9]+.[0-9]+.[0-9]*' | |
| branches: | |
| - 'development' | |
| - 'build_dockers*' | |
| - 'build-all-*' | |
| - 'build-dockers-*' | |
| schedule: | |
| - cron: '05 00 * * 0-5' # Nightly build, 5min past midnight, Sunday to Friday | |
| workflow_dispatch: | |
| inputs: | |
| version: | |
| type: string | |
| description: 'override image tag/version' | |
| tag_alias: | |
| default: latest-adhoc | |
| type: string | |
| description: 'image tag alias' | |
| platforms: | |
| default: linux/amd64 | |
| description: 'docker target build platform(s)' | |
| type: choice | |
| options: | |
| - linux/amd64 | |
| - linux/arm64 | |
| - linux/arm64, linux/amd64 | |
| # - linux/riscv64 | |
| env: | |
| toolchain_default: stable | |
| concurrency: | |
| # https://docs.github.com/en/actions/examples/using-concurrency-expressions-and-a-test-matrix | |
| group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | |
| cancel-in-progress: ${{ !startsWith(github.ref, 'refs/tags/v') || github.ref != 'refs/heads/development' || github.ref != 'refs/heads/nextnet' || github.ref != 'refs/heads/stagenet' }} | |
| permissions: | |
| contents: read | |
| jobs: | |
| base_builds_envs_setup: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| toolchain: ${{ steps.envs_setup.outputs.toolchain }} | |
| platforms: ${{ steps.envs_setup.outputs.platforms }} | |
| version: ${{ steps.envs_setup.outputs.version }} | |
| tag_alias: ${{ steps.envs_setup.outputs.tag_alias }} | |
| steps: | |
| - name: envs setup | |
| id: envs_setup | |
| shell: bash | |
| run: | | |
| echo "Workflow triggered by ${{ github.actor }} for ${{ github.event_name }}" | |
| echo "SHA - ${GITHUB_SHA}" | |
| VSHA_SHORT=${GITHUB_SHA::7} | |
| echo "SHA short - ${VSHA_SHORT}" | |
| echo "VSHA_SHORT=${VSHA_SHORT}" >> $GITHUB_ENV | |
| TOOLCHAIN=${{ github.event.inputs.toolchain }} | |
| echo "toolchain=${TOOLCHAIN:-${{ env.toolchain_default }}}" >> $GITHUB_OUTPUT | |
| if [[ "${{ github.ref }}" =~ ^refs/tags/v* ]] && [ "${{ github.event_name }}" != "workflow_dispatch" ] ; then | |
| echo "Tagged Build - Build everything" | |
| VERSION="${{ github.ref_name }}" | |
| echo "Version used - ${VERSION}" | |
| echo "platforms=linux/arm64, linux/amd64" >> $GITHUB_OUTPUT | |
| echo "version=${VERSION}" >> $GITHUB_OUTPUT | |
| echo "tag_alias=latest" >> $GITHUB_OUTPUT | |
| fi | |
| if [[ "${{ github.ref }}" =~ ^refs/heads/build-dockers-* ]] || [[ "${{ github.ref }}" =~ ^refs/heads/build-all-* ]] ; then | |
| echo "Branch Build - limited dual arch" | |
| echo "platforms=linux/arm64, linux/amd64" >> $GITHUB_OUTPUT | |
| echo "tag_alias=latest-adhoc" >> $GITHUB_OUTPUT | |
| fi | |
| if [ "${{ github.event_name }}" == "workflow_dispatch" ] ; then | |
| echo "Manual Build - selective" | |
| echo "platforms=${{ github.event.inputs.platforms }}" >> $GITHUB_OUTPUT | |
| echo "version=${{ github.event.inputs.version }}" >> $GITHUB_OUTPUT | |
| echo "tag_alias=${{ github.event.inputs.tag_alias }}" >> $GITHUB_OUTPUT | |
| fi | |
| if [ "${{ github.event_name }}" == "schedule" ] ; then | |
| echo "Scheduled builds" | |
| if [[ $(date +%u) -eq 7 ]] ; then | |
| echo "Weekly Build - limited dual arch" | |
| echo "platforms=linux/arm64, linux/amd64" >> $GITHUB_OUTPUT | |
| echo "tag_alias=latest-weekly" >> $GITHUB_OUTPUT | |
| else | |
| echo "Nightly Build - limited amd64" | |
| echo "platforms=linux/amd64" >> $GITHUB_OUTPUT | |
| echo "tag_alias=latest-nightly" >> $GITHUB_OUTPUT | |
| fi | |
| fi | |
| builds_run: | |
| permissions: | |
| contents: read | |
| packages: write | |
| needs: base_builds_envs_setup | |
| uses: ./.github/workflows/build_dockers_workflow.yml | |
| secrets: inherit | |
| with: | |
| toolchain: ${{ needs.base_builds_envs_setup.outputs.toolchain }} | |
| platforms: ${{ needs.base_builds_envs_setup.outputs.platforms }} | |
| version: ${{ needs.base_builds_envs_setup.outputs.version }} | |
| tag_alias: ${{ needs.base_builds_envs_setup.outputs.tag_alias }} |