Skip to content

Commit

Permalink
[CI] Filter runs of LLVM Test workflow (#15458)
Browse files Browse the repository at this point in the history
This workflow now only triggers on changes to paths that are directly
related to LLVM.
It also runs on a nightly schedule and can be triggered manually.

Co-authored-by: Sijawusz Pur Rahnama <sija@sija.pl>
  • Loading branch information
straight-shoota and Sija authored Feb 13, 2025
1 parent c145ba9 commit 63cf466
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/llvm.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
name: LLVM CI

on: [push, pull_request]
on:
push:
paths:
- 'src/llvm/**'
- 'spec/std/llvm/**'
- 'spec/llvm-ir/**'
- '.github/workflows/llvm.yml'
pull_request:
paths:
- 'src/llvm/**'
- 'spec/std/llvm/**'
- 'spec/llvm-ir/**'
- '.github/workflows/llvm.yml'
schedule:
- cron: '0 3 * * *'
workflow_dispatch:

permissions: {}

Expand Down

0 comments on commit 63cf466

Please sign in to comment.