Skip to content

Commit da55b18

Browse files
author
serge-sans-paille
committed
extra github validation
1 parent 5a2124b commit da55b18

File tree

1 file changed

+8
-11
lines changed

1 file changed

+8
-11
lines changed

.github/workflows/llvm.yml

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,26 +9,23 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os:
12-
- ubuntu-latest
13-
- windows-latest
1412
- macOS-latest
15-
cmake_args:
16-
- ""
1713
steps:
18-
- name: Setup Windows
19-
if: startsWith(matrix.os, 'windows')
20-
uses: tstellar/actions/setup-windows@master
21-
with:
22-
arch: amd64
2314
- uses: actions/checkout@v1
2415
with:
2516
fetch-depth: 1
2617
- name: Install Ninja
2718
uses: tstellar/actions/install-ninja@master
2819
with:
2920
os: ${{ runner.os }}
30-
- name: Test LLVM
21+
- name: Test LLVM / dynamic
22+
if: startsWith(matrix.os, 'windows') == false
23+
uses: tstellar/actions/build-test-llvm-project@master
24+
with:
25+
cmake_args: -G Ninja -DCMAKE_BUILD_TYPE=Release ${{ matrix.cmake_args }} -DLLVM_ENABLE_PROJECTS='polly;clang' -DPOLLY_ENABLE_GPGPU_CODEGEN=OFF -DLLVM_ENABLE_ASSERTIONS=ON -DLLVM_POLLY_LINK_INTO_TOOLS=OFF
26+
os: ${{ runner.os }}
27+
- name: Test LLVM / static
3128
uses: tstellar/actions/build-test-llvm-project@master
3229
with:
33-
cmake_args: -G Ninja -DCMAKE_BUILD_TYPE=Release ${{ matrix.cmake_args }}
30+
cmake_args: -G Ninja -DCMAKE_BUILD_TYPE=Release ${{ matrix.cmake_args }} -DLLVM_ENABLE_PROJECTS='polly;clang' -DPOLLY_ENABLE_GPGPU_CODEGEN=ON -DLLVM_ENABLE_ASSERTIONS=ON -DLLVM_POLLY_LINK_INTO_TOOLS=ON
3431
os: ${{ runner.os }}

0 commit comments

Comments
 (0)