Skip to content

Commit

Permalink
[github] Read the LLVM commit from environment (iree-org#121)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ftynse authored Dec 15, 2021
1 parent 11b26e0 commit 789ca6c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/buildAndTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit 789ca6c

Please sign in to comment.