Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jackalcooper committed Dec 5, 2023
1 parent 7a69e82 commit 9faedcf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
python3 -m pip install mlir=="${{ inputs.mlir_wheel_version }}" -f https://makslevental.github.io/wheels -U
echo "LLVM_CONFIG_PATH=$(python3 -c 'import mlir;print(mlir.__path__[0])')/bin/llvm-config" >> "$GITHUB_ENV"
- name: Install MLIR (latest)
if: github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && inputs.mlir_wheel_version == '') || (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'use-latest-mlir'))
if: inputs.mlir_wheel_version == 'latest' || (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'use-latest-mlir'))
run: |
python3 -m pip install mlir -f https://makslevental.github.io/wheels -U
echo "LLVM_CONFIG_PATH=$(python3 -c 'import mlir;print(mlir.__path__[0])')/bin/llvm-config" >> "$GITHUB_ENV"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ jobs:
pull-requests: write
uses: ./.github/workflows/elixir.yml
with:
mlir_wheel_version: ${{ inputs.mlir_wheel_version }}
mlir_wheel_version: ${{ inputs.mlir_wheel_version || 'latest' }}

0 comments on commit 9faedcf

Please sign in to comment.