Skip to content

Commit 0955a62

Browse files
TinaAMDGitHub Enterprise
authored andcommitted
Merge pull request #9 from ACT/matthias.merge_fused_ops-ci
Merge CI (from base branch)
2 parents 870ac13 + a7957d6 commit 0955a62

File tree

2 files changed

+31
-4
lines changed

2 files changed

+31
-4
lines changed

.github/workflows/llvm-project-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ jobs:
3636
- ubuntu-latest
3737
# Use windows-2019 due to:
3838
# https://developercommunity.visualstudio.com/t/Prev-Issue---with-__assume-isnan-/1597317
39-
- windows-2019
39+
#- windows-2019
4040
# We're using a specific version of macOS due to:
4141
# https://github.com/actions/virtual-environments/issues/5900
42-
- macOS-11
42+
#- macOS-11
4343
steps:
4444
- name: Setup Windows
4545
if: startsWith(matrix.os, 'windows')
@@ -82,8 +82,8 @@ jobs:
8282
# This should be a no-op for non-mac OSes
8383
PKG_CONFIG_PATH: /usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig//12
8484
with:
85-
cmake_args: '-GNinja -DLLVM_ENABLE_PROJECTS="${{ inputs.projects }}" -DCMAKE_BUILD_TYPE=Release -DLLDB_INCLUDE_TESTS=OFF -DCMAKE_C_COMPILER_LAUNCHER=sccache -DCMAKE_CXX_COMPILER_LAUNCHER=sccache'
86-
build_target: '${{ inputs.build_target }}'
85+
cmake_args: '-GNinja -DLLVM_ENABLE_PROJECTS="${{ inputs.projects }}" -DLLVM_TARGETS_TO_BUILD=host -DCMAKE_BUILD_TYPE=Release -DLLDB_INCLUDE_TESTS=OFF -DCMAKE_C_COMPILER_LAUNCHER=sccache -DCMAKE_CXX_COMPILER_LAUNCHER=sccache'
86+
build_target: '${{ inputs.build_target }}'
8787

8888
- name: Build and Test libclc
8989
if: "!startsWith(matrix.os, 'windows') && contains(inputs.projects, 'libclc')"

.github/workflows/mlir-tests.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: MLIR Tests
2+
3+
permissions:
4+
contents: read
5+
6+
on:
7+
workflow_dispatch:
8+
pull_request:
9+
ignore-forks: true
10+
paths:
11+
- 'mlir/**'
12+
- '.github/workflows/mlir-tests.yml'
13+
- '.github/workflows/llvm-project-tests.yml'
14+
15+
concurrency:
16+
# Skip intermediate builds: always.
17+
# Cancel intermediate builds: only if it is a pull request build.
18+
group: ${{ github.workflow }}-${{ github.ref }}
19+
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
20+
21+
jobs:
22+
check_mlir:
23+
name: Test mlir
24+
uses: ./.github/workflows/llvm-project-tests.yml
25+
with:
26+
build_target: check-mlir
27+
projects: mlir

0 commit comments

Comments
 (0)