Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
garazdawi committed Jan 12, 2024
1 parent db2f6fe commit a76120b
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,18 +119,17 @@ jobs:
cat $GITHUB_OUTPUT
- name: Restore from cache
env:
NO_CACHE: ${{ steps.cache.outputs.no-cache || steps.issue_comment.outputs.DISABLE_CACHE || (steps.cache.outputs.deleted_count && steps.cache.outputs.deleted_count > 20) }}
NO_CACHE: ${{ (steps.cache.outputs.no-cache || steps.issue_comment.outputs.DISABLE_CACHE) || (steps.cache.outputs.deleted_count > 20) }}
DISABLE_CACHE: ${{ steps.issue_comment.outputs.DISABLE_CACHE }}
DISABLE_CACHE2: ${{ steps.issue_comment.outputs.DISABLE_CACHE == 'true' }}
BOOTSTRAP: ${{ steps.cache.outputs.bootstrap }}
CONFIGURE: ${{ steps.cache.outputs.configure }}
EVENT: ${{ github.event_name }}
DELETED: ${{ steps.cache.outputs.deleted_files }}
run: |
echo "${{ steps.issue_comment.outputs.DISABLE_CACHE }}"
echo "${{ toJson(steps.cache.outputs) }}"
echo "${{ steps.cache.outputs.no-cache }}"
echo "${{ steps.cache.outputs.deleted_count }}"
echo "${{ steps.cache.outputs.no-cache || steps.issue_comment.outputs.DISABLE_CACHE }}"
echo "${{ steps.cache.outputs.deleted_count > 20 }}"
.github/scripts/restore-from-prebuilt.sh "`pwd`" \
"`pwd`/.github/otp.tar.gz" \
"`pwd`/otp_archive.tar.gz"
Expand Down

0 comments on commit a76120b

Please sign in to comment.