comparison .github/workflows/make.yaml @ 31756:eb32cf98eed1

maint: Merge stable to default.
author Markus Mützel <markus.muetzel@gmx.de>
date Wed, 18 Jan 2023 18:00:40 +0100
parents a8bb150a7db1 cf0b1426539e
children f812dd8304d9
comparison
equal deleted inserted replaced
31754:106c7532a764 31756:eb32cf98eed1
725 echo "ccachedir=$(cygpath -m ~/.ccache)" >> $GITHUB_OUTPUT 725 echo "ccachedir=$(cygpath -m ~/.ccache)" >> $GITHUB_OUTPUT
726 echo "key=ccache:${{ matrix.os }}:cygwin:${{ github.ref }}:$(date +"%Y-%m-%d_%H-%M-%S"):${{ github.sha }}" >> $GITHUB_OUTPUT 726 echo "key=ccache:${{ matrix.os }}:cygwin:${{ github.ref }}:$(date +"%Y-%m-%d_%H-%M-%S"):${{ github.sha }}" >> $GITHUB_OUTPUT
727 727
728 - name: restore ccache 728 - name: restore ccache
729 # Setup a github cache used to maintain the ccache from one run to the next 729 # Setup a github cache used to maintain the ccache from one run to the next
730 uses: actions/cache/restore@v3 730 uses: actions/cache/restore@v3.2.2
731 with: 731 with:
732 path: ${{ steps.ccache-prepare.outputs.ccachedir }} 732 path: ${{ steps.ccache-prepare.outputs.ccachedir }}
733 key: ${{ steps.ccache-prepare.outputs.key }} 733 key: ${{ steps.ccache-prepare.outputs.key }}
734 restore-keys: | 734 restore-keys: |
735 ccache:${{ matrix.os }}:cygwin:${{ github.ref }} 735 ccache:${{ matrix.os }}:cygwin:${{ github.ref }}
791 continue-on-error: true 791 continue-on-error: true
792 run: ccache -s 792 run: ccache -s
793 793
794 - name: save ccache 794 - name: save ccache
795 # Save the cache after we are done (successfully) building 795 # Save the cache after we are done (successfully) building
796 uses: actions/cache/save@v3 796 uses: actions/cache/save@v3.2.2
797 with: 797 with:
798 path: ${{ steps.ccache-prepare.outputs.ccachedir }} 798 path: ${{ steps.ccache-prepare.outputs.ccachedir }}
799 key: ${{ steps.ccache-prepare.outputs.key }} 799 key: ${{ steps.ccache-prepare.outputs.key }}
800 800
801 - name: check 801 - name: check