Skip to content

Commit 2201366

Browse files
authored
Update ci.yml
1 parent 86f6695 commit 2201366

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

.github/workflows/ci.yml

+12-10
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,27 @@
1-
name: CI
1+
name: Rust CI
22

3-
on:
3+
on:
44
push:
55
branches:
6-
- main
6+
- master
77
pull_request:
88
branches:
9-
- main
9+
- master
1010
merge_group:
1111

1212
jobs:
1313
build:
14-
name: "PR - ${{ matrix.name }}"
14+
name: Rust Integration CI LLVM ${{ matrix.llvm }} ${{ matrix.build }} ${{ matrix.os }}
15+
runs-on: ${{ matrix.os }}
16+
1517
strategy:
18+
fail-fast: false
1619
matrix:
17-
include:
18-
- name: Build and test Enzyme rust
19-
- os: ubuntu-latest
20-
- env: {}
20+
llvm: ["11", "12", "13", "14", "15", "16"]
21+
build: ["Release"] # "RelWithDebInfo"
22+
os: [ubuntu-20.04]
23+
2124
timeout-minutes: 600
22-
runs-on: "${{ matrix.os }}"
2325
steps:
2426
- name: checkout the source code
2527
uses: actions/checkout@v3

0 commit comments

Comments
 (0)