From 9dce00a4e7b9bdaf1b2bbc0c9d8c2ccc830c65b1 Mon Sep 17 00:00:00 2001 From: Alessandro Comodi Date: Thu, 20 May 2021 19:57:03 +0200 Subject: gh-actions: interchange: use commit sha as cache key Signed-off-by: Alessandro Comodi --- .github/workflows/interchange_ci.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to '.github') diff --git a/.github/workflows/interchange_ci.yml b/.github/workflows/interchange_ci.yml index f93a58ce..0fe58db8 100644 --- a/.github/workflows/interchange_ci.yml +++ b/.github/workflows/interchange_ci.yml @@ -22,14 +22,17 @@ jobs: uses: hendrikmuhs/ccache-action@v1 - name: Get yosys - run: git clone https://github.com/YosysHQ/yosys.git + run: | + git clone https://github.com/YosysHQ/yosys.git + cd yosys + echo "YOSYS_SHA=$(git rev-parse HEAD)" >> $GITHUB_ENV - name: Cache yosys installation uses: actions/cache@v2 id: cache-yosys with: path: .yosys - key: cache-yosys-${{ hashFiles('**/yosys/.git/HEAD') }} + key: cache-yosys-${{ env.YOSYS_SHA }} - name: Build yosys run: | @@ -88,14 +91,17 @@ jobs: uses: hendrikmuhs/ccache-action@v1 - name: Get yosys - run: git clone https://github.com/YosysHQ/yosys.git + run: | + git clone https://github.com/YosysHQ/yosys.git + cd yosys + echo "YOSYS_SHA=$(git rev-parse HEAD)" >> $GITHUB_ENV - name: Cache yosys installation uses: actions/cache@v2 id: cache-yosys with: path: .yosys - key: cache-yosys-${{ hashFiles('**/yosys/.git/HEAD') }} + key: cache-yosys-${{ env.YOSYS_SHA }} - name: Build yosys run: | -- cgit v1.2.3