Build and push final image #411
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 final image | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
# start-runner: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: start arm runner | |
# uses: gagoar/invoke-aws-lambda@master | |
# with: | |
# AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
# AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
# FunctionName: StartCirohRunner | |
# if: startsWith(github.event.pull_request.head.repo.full_name, 'CIROH-UA') || | |
# (startsWith(github.ref, 'refs/heads/main') && github.event_name != 'pull_request') | |
# - name: start x86 runner | |
# uses: gagoar/invoke-aws-lambda@master | |
# with: | |
# AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
# AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
# FunctionName: StartCirohX86Runner | |
# if: startsWith(github.event.pull_request.head.repo.full_name, 'CIROH-UA') || | |
# (startsWith(github.ref, 'refs/heads/main') && github.event_name != 'pull_request') | |
# - name: wait runner up | |
# shell: bash | |
# run: | | |
# sleep 300 | |
# if: startsWith(github.event.pull_request.head.repo.full_name, 'CIROH-UA') || | |
# (startsWith(github.ref, 'refs/heads/main') && github.event_name != 'pull_request') | |
# init: | |
# needs: start-runner | |
# runs-on: ${{ matrix.runner}} | |
# strategy: | |
# matrix: | |
# runner: [ARM64, x86] | |
# steps: | |
# - name: clear docker cache | |
# run: | | |
# docker system prune -af | |
# build: | |
# needs: init | |
# runs-on: ${{ matrix.runner}} | |
# outputs: # Define job outputs | |
# test-tag-name: ${{ steps.test-build.outputs.tag-name }} | |
# push-tag-name: ${{ steps.push-build.outputs.tag-name }} | |
# strategy: | |
# matrix: | |
# runner: [arm64, x86] | |
# steps: | |
# - name: deploy | |
# uses: actions/checkout@v2 | |
# - name: Build and test Docker image | |
# id: test-build | |
# uses: ./.github/action_templates/build-and-test | |
# with: | |
# docker-auth-token: ${{ secrets.DOCKER_AUTH_TOKEN }} | |
# image-name: "ciroh-ngen-image" | |
# dockerfile-name: "Dockerfile" | |
# platform: ${{ matrix.runner}} | |
# if: ${{ !startsWith(github.ref, 'refs/heads/main') }} | |
# - name: Build and push Docker image | |
# id: push-build | |
# uses: ./.github/action_templates/build-and-push | |
# with: | |
# docker-auth-token: ${{ secrets.DOCKER_AUTH_TOKEN }} | |
# image-name: "ciroh-ngen-image" | |
# dockerfile-name: "Dockerfile" | |
# platform: ${{ matrix.runner}} | |
# if: startsWith(github.ref, 'refs/heads/main') | |
# check_result: | |
# needs: build | |
# runs-on: ${{ matrix.runner}} | |
# strategy: | |
# matrix: | |
# runner: [ARM64, x86] | |
# outputs: | |
# output1: ${{ steps.step1.outputs.result }} | |
# steps: | |
# - id: step1 | |
# run: echo "result=success" >> "$GITHUB_OUTPUT" | |
# create-manifest: | |
# needs: [check_result, build] | |
# runs-on: ARM64 | |
# steps: | |
# - name: Login to DockerHub | |
# uses: docker/login-action@v3 | |
# with: | |
# username: awiciroh | |
# password: ${{ secrets.DOCKER_AUTH_TOKEN }} | |
# - name: Print Specific Environment Variables | |
# shell: bash | |
# run: | | |
# echo "Debug - Current branch ref: ${{ github.ref }}" | |
# echo "Debug - Test tag from outputs: ${{ needs.build.outputs.test-tag-name }}" | |
# echo "Debug - Push tag from outputs: ${{ needs.build.outputs.push-tag-name }}" | |
# - name: Create and push manifest | |
# run: | | |
# if [[ "${{ github.ref }}" == "refs/heads/main" ]]; then | |
# echo "Using push tag (main branch)" | |
# TAG_NAME="${{ needs.build.outputs.push-tag-name }}" | |
# echo "After assignment - TAG_NAME: '${TAG_NAME}'" | |
# else | |
# echo "Using test tag (non-main branch)" | |
# TAG_NAME="${{ needs.build.outputs.test-tag-name }}" | |
# echo "After assignment - TAG_NAME: '${TAG_NAME}'" | |
# if [[ -z "${TAG_NAME}" ]]; then | |
# echo "Error: test tag is empty" | |
# exit 1 | |
# fi | |
# fi | |
# echo "Creating manifest with TAG_NAME: ${TAG_NAME}" | |
# docker manifest create awiciroh/ciroh-ngen-image:${TAG_NAME} \ | |
# awiciroh/ciroh-ngen-image:${TAG_NAME}-arm64 \ | |
# awiciroh/ciroh-ngen-image:${TAG_NAME}-x86 | |
# docker manifest push awiciroh/ciroh-ngen-image:${TAG_NAME} | |
# slack: | |
# runs-on: ARM64 | |
# if: startsWith(github.event.pull_request.head.repo.full_name, 'CIROH-UA') || | |
# (startsWith(github.ref, 'refs/heads/main') && github.event_name != 'pull_request') | |
# needs: [build, check_result] | |
# env: | |
# OUTPUT: ${{needs.check_result.outputs.output1}} | |
# steps: | |
# - name: Set env JOBSTATUS | |
# run: | | |
# echo "$OUTPUT" | |
# if [[ "success" = "$OUTPUT" ]] | |
# then | |
# echo "JOBSTATUS=success" >> "$GITHUB_ENV" | |
# else | |
# echo "JOBSTATUS=failure" >> "$GITHUB_ENV" | |
# fi | |
# - run: echo "$JOBSTATUS" | |
# - name: deploy | |
# uses: actions/checkout@v2 | |
# - name: Publish slack message | |
# if: always() | |
# uses: ./.github/action_templates/slack | |
# with: | |
# slack-webhook-url: ${{ secrets.SLACK_WEBHOOK_URL }} | |
# job-status: ${{ env.JOBSTATUS }} | |
# pull_request_url: ${{ github.event.pull_request.html_url }} | |
# head_commit_url: ${{ github.event.head_commit.url }} | |
# stop-runner: | |
# needs: slack | |
# runs-on: ubuntu-latest | |
# if: startsWith(github.event.pull_request.head.repo.full_name, 'CIROH-UA') || | |
# (startsWith(github.ref, 'refs/heads/main') && github.event_name != 'pull_request') | |
# steps: | |
# - name: stop arm runner | |
# uses: gagoar/invoke-aws-lambda@master | |
# with: | |
# AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
# AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
# FunctionName: StopCirohRunner | |
# - name: stop x86 runner | |
# uses: gagoar/invoke-aws-lambda@master | |
# with: | |
# AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
# AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
# FunctionName: StopCirohX86Runner | |
create-manifest: | |
runs-on: ARM64 | |
steps: | |
- name: Print Specific Environment Variables | |
shell: bash | |
run: | | |
echo "Debug - Current branch ref: ${{ github.ref }}" | |
- name: Create and push manifest | |
run: | | |
if [[ "${{ github.ref }}" == "refs/heads/main" ]]; then | |
echo "Using push tag (main branch)" | |
TAG_NAME="latest" | |
echo "After assignment - TAG_NAME: '${TAG_NAME}'" | |
else | |
echo "Using test tag (non-main branch)" | |
TAG_NAME="${GITHUB_REF##*/}" | |
echo "After assignment - TAG_NAME: '${TAG_NAME}'" | |
if [[ -z "${TAG_NAME}" ]]; then | |
echo "Error: test tag is empty" | |
exit 1 | |
fi | |
fi | |
echo "Final TAG_NAME: '${TAG_NAME}'" | |
docker manifest create awiciroh/ciroh-ngen-image:${TAG_NAME} \ | |
awiciroh/ciroh-ngen-image:${TAG_NAME}-arm64 \ | |
awiciroh/ciroh-ngen-image:${TAG_NAME}-x86 --amend | |
docker manifest push awiciroh/ciroh-ngen-image:${TAG_NAME} |