From fc26440d5f258c1b4b449687ea501cbdbeafa71c Mon Sep 17 00:00:00 2001 From: Vishal Khode Date: Wed, 4 Dec 2024 00:33:20 +0530 Subject: [PATCH] Try dependencies. --- .github/workflows/deployment.workflow.yml | 150 +++++++++++++--------- 1 file changed, 92 insertions(+), 58 deletions(-) diff --git a/.github/workflows/deployment.workflow.yml b/.github/workflows/deployment.workflow.yml index bf84f941a..2559a7a5d 100644 --- a/.github/workflows/deployment.workflow.yml +++ b/.github/workflows/deployment.workflow.yml @@ -3,7 +3,7 @@ on: push: branches: [ develop, main, ACMS-4329 ] jobs: - acquia_code_deployment: + build: if: ${{ github.event_name == 'push' }} name: "Code Deployment on Acquia Environment" env: @@ -72,6 +72,7 @@ jobs: curl -OL https://github.com/acquia/cli/releases/latest/download/acli.phar chmod +x acli.phar mv acli.phar /usr/local/bin/acli + cp /usr/local/bin/acli ./vendor/bin/acli acli --version acli auth:login --key=${ACQUIA_CLOUD_API_KEY} --secret=${ACQUIA_CLOUD_API_SECRET} -n @@ -82,61 +83,94 @@ jobs: ACQUIA_CLOUD_API_KEY: ${{ secrets.ACQUIA_CLOUD_API_KEY }} ACQUIA_CLOUD_API_SECRET: ${{ secrets.ACQUIA_CLOUD_API_SECRET }} ACQUIA_APPLICATION_UUID: ${{ secrets.ACQUIA_APPLICATION_UUID }} - - name: Deploy & Switch Code - shell: bash + - name: Create Patch for changes run: | - BRANCH_TO_DEPLOY=acli-${GITHUB_REF_NAME} - - acli push:artifact ${ACQUIA_CLOUD_ENVIRONMENT} --destination-git-branch=${BRANCH_TO_DEPLOY} -n - - DEPLOYED_BRANCH=$(acli api:environments:find ${ACQUIA_CLOUD_ENVIRONMENT} -n | jq -r '.vcs.path') - - # If BRANCH_TO_DEPLOY is NOT the same as DEPLOYED_BRANCH. Then switch code. - if [ "$BRANCH_TO_DEPLOY" != "$DEPLOYED_BRANCH" ]; then - # Step 1: Run the code:switch command and capture its output. - response=$(acli api:environments:code-switch ${ACQUIA_CLOUD_ENVIRONMENT} ${BRANCH_TO_DEPLOY} -n) - - # Step 2: Extract the notification ID from the JSON response - notification_id=$(echo "$response" | jq -r '.notification') - - # Step 3: Check if the notification ID was successfully extracted. - if [[ -z "$notification_id" ]]; then - echo "Error: Notification ID not found in the response." - exit 1 - fi - - progress=0 - timeout=1800 # Timeout in seconds (30 minutes). - start_time=$(date +%s) # Get the current time in seconds - - echo "Please wait while code is being switched..." - # Step 4: Poll the notification status until progress reaches 100. - while [[ "$progress" -lt 100 ]]; do - # Run the notification find command. - notification_response=$(acli api:notifications:find "$notification_id" -n) - - # Extract the progress value. - progress=$(echo "$notification_response" | jq -r '.progress') - - # Display current progress. - #echo "Current progress: $progress%" - - # Check if we've exceeded the timeout (5 minutes). - current_time=$(date +%s) - elapsed_time=$((current_time - start_time)) - - if [[ "$elapsed_time" -ge "$timeout" ]]; then - # Calculate minutes and seconds. - minutes=$((elapsed_time / 60)) - seconds=$((elapsed_time % 60)) - - echo "Error: Timeout reached after $minutes minute(s) and $seconds second(s). Progress did not reach 100%." - exit 1 - fi - - # Wait for 5 seconds before polling again. - sleep 5 - done - fi - env: - ACQUIA_CLOUD_ENVIRONMENT: ${{ secrets.ACQUIA_CLOUD_ENVIRONMENT }} + git format-patch -2 HEAD --stdout > changes.patch + # Upload patches as artifacts. + - name: Upload Changes + uses: actions/upload-artifact@v3 + with: + name: patches + path: changes.patch + deploy: + runs-on: ubuntu-latest + needs: build + steps: + - name: Checkout code + uses: actions/checkout@v3 + - uses: shivammathur/setup-php@v2 + with: + php-version: 8.3 + - name: Download Changes + uses: actions/download-artifact@v3 + with: + name: patches + - name: Build Back Project + run: | + git apply changes.patch && rm changes.patch + git add . && git commit -m "Apply changes from patch." + composer install +# - name: Deploy & Switch Code +# shell: bash +# run: | +# ls -ltr vendor || true +# git log +# exit 1 +# # Move back acli. +# mv ./vendor/bin/acli /usr/local/bin/acli +# +# BRANCH_TO_DEPLOY=acli-${GITHUB_REF_NAME} +# +# acli push:artifact ${ACQUIA_CLOUD_ENVIRONMENT} --destination-git-branch=${BRANCH_TO_DEPLOY} -n +# +# DEPLOYED_BRANCH=$(acli api:environments:find ${ACQUIA_CLOUD_ENVIRONMENT} -n | jq -r '.vcs.path') +# +# # If BRANCH_TO_DEPLOY is NOT the same as DEPLOYED_BRANCH. Then switch code. +# if [ "$BRANCH_TO_DEPLOY" != "$DEPLOYED_BRANCH" ]; then +# # Step 1: Run the code:switch command and capture its output. +# response=$(acli api:environments:code-switch ${ACQUIA_CLOUD_ENVIRONMENT} ${BRANCH_TO_DEPLOY} -n) +# +# # Step 2: Extract the notification ID from the JSON response +# notification_id=$(echo "$response" | jq -r '.notification') +# +# # Step 3: Check if the notification ID was successfully extracted. +# if [[ -z "$notification_id" ]]; then +# echo "Error: Notification ID not found in the response." +# exit 1 +# fi +# +# progress=0 +# timeout=1800 # Timeout in seconds (30 minutes). +# start_time=$(date +%s) # Get the current time in seconds +# +# echo "Please wait while code is being switched..." +# # Step 4: Poll the notification status until progress reaches 100. +# while [[ "$progress" -lt 100 ]]; do +# # Run the notification find command. +# notification_response=$(acli api:notifications:find "$notification_id" -n) +# +# # Extract the progress value. +# progress=$(echo "$notification_response" | jq -r '.progress') +# +# # Display current progress. +# #echo "Current progress: $progress%" +# +# # Check if we've exceeded the timeout (5 minutes). +# current_time=$(date +%s) +# elapsed_time=$((current_time - start_time)) +# +# if [[ "$elapsed_time" -ge "$timeout" ]]; then +# # Calculate minutes and seconds. +# minutes=$((elapsed_time / 60)) +# seconds=$((elapsed_time % 60)) +# +# echo "Error: Timeout reached after $minutes minute(s) and $seconds second(s). Progress did not reach 100%." +# exit 1 +# fi +# +# # Wait for 5 seconds before polling again. +# sleep 5 +# done +# fi +# env: +# ACQUIA_CLOUD_ENVIRONMENT: ${{ secrets.ACQUIA_CLOUD_ENVIRONMENT }}