File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 6767 sudo .github/workflows/posix-deps-apt.sh
6868
6969 # Install JIT dependencies
70- sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" ./llvm.sh ${{ inputs.llvm }}
70+ if [ "${{ inputs.binary_id }}" = "jit" ]; then
71+ sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" ./llvm.sh ${{ inputs.llvm }}
72+ fi
7173
7274 # Install Memray dependencies
7375 sudo apt-get install -y \
8082 env :
8183 MEMORY_TRACKER_TOKEN : ${{ secrets.MEMORY_TRACKER_TOKEN }}
8284 run : |
83- export PATH="$(llvm-config-${{ inputs.llvm }} --bindir):$PATH"
85+ if [ "${{ inputs.binary_id }}" = "jit" ]; then
86+ export PATH="$(llvm-config-${{ inputs.llvm }} --bindir):$PATH"
87+ fi
8488
8589 # Build command with conditional flags
8690 CMD="memory-tracker benchmark '${{ github.event.inputs.commit_range }}'"
You can’t perform that action at this time.
0 commit comments