[PATCH] D129526: Import CI tests from the release branch

Anton Korobeynikov via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Jul 26 02:54:24 PDT 2022


asl added a comment.

See comments above



================
Comment at: .github/workflows/clang-tests.yml:4
+on:
+  push:
+    branches:
----------------
Let's add  `workflow_dispatch:` here as well. So the tests could be triggered manually, if necessary. Same for other pipelines.


================
Comment at: .github/workflows/clang-tests.yml:29
+  check_clang:
+    if: github.repository_owner == 'llvm'
+    name: Test clang,lldb,libclc
----------------
Is this to skip forks? If yes, then more canonical way is to do:
```
on:
  push:
    ignore-forks: true
```


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D129526/new/

https://reviews.llvm.org/D129526



More information about the llvm-commits mailing list