From 789ca6c0408bbd55425969b6478548457c52545e Mon Sep 17 00:00:00 2001 From: "Oleksandr \"Alex\" Zinenko" Date: Wed, 15 Dec 2021 17:19:27 +0100 Subject: [PATCH] [github] Read the LLVM commit from environment (#121) The workflow was set up to read the LLVM commit from action outputs, but the action was writing it to the environment instead. The workflow has been always checking out LLVM HEAD instead of the pinned version. --- .github/workflows/buildAndTest.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/buildAndTest.yml b/.github/workflows/buildAndTest.yml index 99cb96f14d15..c46867c5c577 100644 --- a/.github/workflows/buildAndTest.yml +++ b/.github/workflows/buildAndTest.yml @@ -39,7 +39,8 @@ jobs: with: path: llvm-project repository: llvm/llvm-project - ref: ${{ steps.get_llvm_commit_hash.outputs.LLVM_COMMIT }} + ref: ${{ env.LLVM_COMMIT }} + - name: Install Python depends run: |