From b36fd3e9316614b22d457e74dce4864c0b83c973 Mon Sep 17 00:00:00 2001 From: aboyko Date: Thu, 7 Nov 2024 08:06:05 -0500 Subject: [PATCH] [GHA] less logging while waiting for signed exe --- .github/scripts/sign-exe.sh | 2 +- .github/workflows/gh-hosted-eclipse-distro-build.yml | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/scripts/sign-exe.sh b/.github/scripts/sign-exe.sh index 997e3f7d35..5f1995348d 100755 --- a/.github/scripts/sign-exe.sh +++ b/.github/scripts/sign-exe.sh @@ -10,7 +10,7 @@ echo "Copying ${in_file} to s3 s3://${AWS_S3_BUCKET}/exes-to-sign/${id}.exe for aws s3 cp $in_file s3://$AWS_S3_BUCKET/exes-to-sign/$id.exe --no-progress for (( i=wait_time; i /dev/null 2>&1 || true) if [ -z "$object_exists" ]; then echo "Waited ${i} seconds but ${in_filename} hasn't been signed yet..." else diff --git a/.github/workflows/gh-hosted-eclipse-distro-build.yml b/.github/workflows/gh-hosted-eclipse-distro-build.yml index 447716dbcb..29ffb360fb 100644 --- a/.github/workflows/gh-hosted-eclipse-distro-build.yml +++ b/.github/workflows/gh-hosted-eclipse-distro-build.yml @@ -144,9 +144,6 @@ jobs: echo "Uploading Win Zips and OSX tar.gz to S3 for signing..." id=${{ inputs.eclipse_profile }}-${{ inputs.build_type }}-${{ github.run_id }} aws s3 cp ${{ github.workspace }}/eclipse-distribution/org.springframework.boot.ide.product.${{ inputs.eclipse_profile }}/target/products s3://$AWS_S3_BUCKET/sts4-distro-ci-temp/$id --recursive --exclude "*" --include "spring-tool-suite-4*win*.zip" --include "spring-tool-suite-4*macosx*.tar.gz" --exclude "*/*" --no-progress - - name: Upload Win Zip to S3 for Signing via JFrog - run: | - aws s3 rm s3://$AWS_S3_BUCKET/sts4-distro-win-sign/${{ inputs.eclipse_profile }} --recursive --exclude "*" --include "spring-tool-suite-4*win*.zip" --exclude "*/*" outputs: id: ${{ inputs.eclipse_profile }}-${{ inputs.build_type }}-${{ github.run_id }} dist_path: ${{ steps.s3-paths.outputs.dist_path }}