[llvm] [libcxx] Add libc++ github actions workflow to replace buildkite (PR #71836)
Tom Stellard via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 14 13:53:57 PST 2023
================
@@ -0,0 +1,137 @@
+name: Build and Test libc++
+
+on: pull_request
+concurrency:
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
+ cancel-in-progress: true
+
+permissions:
+ checks: write
----------------
tstellar wrote:
I don't think you need any permissions for uploading artifacts. We have at least one workflow that does it with read-only permissions: https://github.com/llvm/llvm-project/blob/main/.github/workflows/libclang-abi-tests.yml
https://github.com/llvm/llvm-project/pull/71836
More information about the llvm-commits
mailing list