Skip to content

Commit

Permalink
chore: print args'
Browse files Browse the repository at this point in the history
  • Loading branch information
polvalente committed Jun 7, 2024
1 parent fd1e8bd commit 2f5b589
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
- name: Download IREE source code
if: steps.cache-iree.outputs.cache-hit != 'true'
run: |
bash scripts/clone_iree.sh ${{ env.BUILD_CACHE }} ${{ env.iree_version }} '${{ env.BUILD_CACHE }}/iree'
./scripts/clone_iree.sh ${{ env.BUILD_CACHE }} ${{ env.iree_version }} '${{ env.BUILD_CACHE }}/iree'
build_artifacts:
runs-on: macos-14
Expand Down
5 changes: 5 additions & 0 deletions scripts/clone_iree.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ BUILD_CACHE=$1
IREE_GIT_REV=$2
IREE_DIR=$3

echo "Args:"
echo " BUILD_CACHE: ${BUILD_CACHE}"
echo " IREE_GIT_REV: ${IREE_GIT_REV}"
echo " IREE_DIR: ${IREE_DIR}"

mkdir -p ${BUILD_CACHE}

IREE_REPO=https://github.com/iree-org/iree
Expand Down

0 comments on commit 2f5b589

Please sign in to comment.