Skip to content

Commit

Permalink
Revert unintended change
Browse files Browse the repository at this point in the history
Also avoid recursive search in `aws s3 cp` to prevent failing
on symbolic links in libgpr2 testsuite. Use bash for-loop
instead, because AWS doesn't understand wildcards as the first
argument.

Refs #1271
  • Loading branch information
reznikmm committed Jun 10, 2024
1 parent fdc3a85 commit c8e60f3
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
- name: Get VSS
uses: actions/checkout@v3
with:
repository: reznikmm/VSS
repository: AdaCore/VSS
path: VSS
- name: Try to checkout langkit's branch
shell: bash
Expand Down Expand Up @@ -134,6 +134,9 @@ jobs:
AWS_ACCESS_KEY_ID: ${{secrets.GHA_CACHE_ACCESS_KEY_ID}}
AWS_SECRET_ACCESS_KEY: ${{secrets.GHA_CACHE_SECRET}}
AWS_DEFAULT_REGION: eu-west-1
shell: bash
run: |
aws s3 cp . s3://adacore-gha-tray-eu-west-1/libadalang/ --recursive --exclude "*" --include "*.tar.gz" --sse=AES256
for file in *.tar.gz ; do
aws s3 cp "$file" s3://adacore-gha-tray-eu-west-1/libadalang/ --sse=AES256
done
aws s3 ls s3://adacore-gha-tray-eu-west-1/libadalang/

0 comments on commit c8e60f3

Please sign in to comment.