[LLVM Integrate] Bump llvm, torch-mlir, stablehlo #139
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Licensed under the Apache License v2.0 with LLVM Exceptions. | |
# See https://llvm.org/LICENSE.txt for license information. | |
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | |
# Also available under a BSD-style license. See LICENSE. | |
name: Bazel Build and Test (llvm-project) | |
# Only run when llvm-project hash changes (deps.bzl) | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'deps.bzl' | |
- '.github/workflows/bazelBuildAndTestLlvm.yml' | |
# TODO: Use self-hosted runners as we hit disk space issues with GitHub hosted runners | |
# push: | |
# branches: | |
# - main | |
# paths: | |
# - 'deps.bzl' | |
# - '.github/workflows/bazelBuildAndTestLlvm.yml' | |
workflow_dispatch: | |
# Ensure that only a single job or workflow using the same | |
# concurrency group will run at a time. This would cancel | |
# any in-progress jobs in the same github workflow and github | |
# ref (e.g. refs/heads/main or refs/pull/<pr_number>/merge). | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
ubuntu-build: | |
name: ubuntu-x86_64 / llvm-project | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout mlir-tcp | |
uses: actions/checkout@v4 | |
- name: Setup workspace | |
uses: ./.github/actions/setup-build | |
with: | |
cache-prefix: 'llvm-project' | |
- name: Build docker image | |
run: | | |
docker build -f docker/Dockerfile \ | |
-t mlir-tcp:ci \ | |
--build-arg GROUP=$(id -gn) \ | |
--build-arg GID=$(id -g) \ | |
--build-arg USER=$(id -un) \ | |
--build-arg UID=$(id -u) \ | |
. | |
- name: Bazel build and test llvm-project | |
run: | | |
docker run --rm \ | |
-v "$(pwd)":"/opt/src/mlir-tcp" \ | |
-v "${HOME}/.cache/bazel":"${HOME}/.cache/bazel" \ | |
mlir-tcp:ci \ | |
bazel test --test_output=errors @llvm-project//mlir/... |