Skip to content

Commit 19f4098

Browse files
[CI][Github] Add linux premerge workflow
This patch adds a Github Actions workflow for Linux premerge. This currently just calls into the existing CI scripts as a starting point.
1 parent 1c020bb commit 19f4098

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/premerge.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: LLVM Premerge Checks
2+
3+
permissions:
4+
contents: read
5+
6+
on:
7+
pull_request:
8+
paths:
9+
- .github/workflows/premerge.yaml
10+
11+
jobs:
12+
premerge-checks-linux:
13+
if: github.repository_owner == 'llvm'
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout LLVM
17+
uses: actions/checkout@v4
18+
- name: Build and Test
19+
run: |
20+
echo test

0 commit comments

Comments
 (0)