File tree Expand file tree Collapse file tree 2 files changed +31
-4
lines changed Expand file tree Collapse file tree 2 files changed +31
-4
lines changed Original file line number Diff line number Diff line change @@ -36,10 +36,10 @@ jobs:
36
36
- ubuntu-latest
37
37
# Use windows-2019 due to:
38
38
# https://developercommunity.visualstudio.com/t/Prev-Issue---with-__assume-isnan-/1597317
39
- - windows-2019
39
+ # - windows-2019
40
40
# We're using a specific version of macOS due to:
41
41
# https://github.com/actions/virtual-environments/issues/5900
42
- - macOS-11
42
+ # - macOS-11
43
43
steps :
44
44
- name : Setup Windows
45
45
if : startsWith(matrix.os, 'windows')
82
82
# This should be a no-op for non-mac OSes
83
83
PKG_CONFIG_PATH : /usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig//12
84
84
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 }}'
87
87
88
88
- name : Build and Test libclc
89
89
if : " !startsWith(matrix.os, 'windows') && contains(inputs.projects, 'libclc')"
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments