/llvm-project/.github/workflows/ |
H A D | release-binaries.yml | 10 upload: 11 description: 'Upload binaries to the release page' 31 upload: 32 description: 'Upload binaries to the release page' 57 upload: ${{ steps.vars.outputs.upload }} 89 ./llvm/utils/release/./github-upload-release.py --token "$GITHUB_TOKEN" --user "$GITHUB_ACTOR" --user-token "$USER_TOKEN" check-permissions 111 if [ -n "${{ inputs.upload }}" ]; then 112 upload="${{ inputs.upload }}" [all...] |
H A D | release-doxygen.yml | 13 upload: 14 description: 'Upload documentation' 24 upload: 25 description: 'Upload documentation' 35 name: Build and Upload Release Doxygen 40 upload: ${{ inputs.upload && !contains(inputs.release-version, 'rc') }} 66 - name: Upload Doxygen 67 if: env.upload 72 ./llvm/utils/release/github-upload [all...] |
H A D | release-documentation.yml | 13 upload: 14 description: 'Upload documentation' 24 upload: 25 description: 'Upload documentation' 31 name: Build and Upload Release Documentation 34 upload: ${{ inputs.upload && !contains(inputs.release-version, 'rc') }} 62 uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # 4.6.0 68 if: env.upload 77 - name: Upload Releas [all...] |
H A D | scorecard.yml | 27 # Needed to upload the results to code-scanning dashboard. 49 …# Upload the results as artifacts (optional). Commenting out will disable uploads of run results i… 51 - name: "Upload artifact" 52 uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # v3.1.0 58 # Upload the results to GitHub's code scanning dashboard. 59 - name: "Upload to code-scanning" 60 uses: github/codeql-action/upload-sarif@17573ee1cc1b9d061760f3a006fc4aac4f944fd5 # v2.2.4
|
H A D | set-release-binary-outputs.sh | 1 # Usage: set-release-binary-outputs.sh <github_user> <tag> <upload> 12 upload=$2 18 upload='false' 33 echo "upload=$upload" >> $GITHUB_OUTPUT
|
H A D | release-tasks.yml | 48 ./llvm/utils/release/./github-upload-release.py --token "$GITHUB_TOKEN" --release ${{ needs.validate-tag.outputs.release-version }} --user ${{ github.actor }} --user-token "$USER_TOKEN" create 50 name: Build and Upload Release Documentation 56 upload: true 59 name: Build and Upload Release Doxygen 68 upload: true 104 upload: true
|
H A D | llvm-tests.yml | 139 - name: Upload ABI file 140 uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # 4.6.0 145 - name: Upload symbol list file 147 uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # 4.6.0 187 - name: Upload ABI Comparison 189 uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # 4.6.0
|
H A D | release-lit.yml | 45 ./llvm/utils/release/./github-upload-release.py --token "$GITHUB_TOKEN" --user ${{ github.actor }} --user-token "$USER_TOKEN" check-permissions 68 - name: Upload lit to test.pypi.org 75 - name: Upload lit to pypi.org
|
H A D | libclang-abi-tests.yml | 132 - name: Upload ABI file 133 uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # 4.6.0 163 - name: Upload ABI Comparison 165 uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # 4.6.0
|
H A D | libcxx-build-and-test.yaml | 64 - uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0 110 - uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0 111 if: always() # Upload artifacts even if the build or test suite fails 174 - uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0 217 - uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0 218 if: always() # Upload artifacts even if the build or test suite fails
|
H A D | ci-post-commit-analyzer.yml | 89 - name: Upload Results 90 uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 #v4.3.0
|
H A D | release-sources.yml | 88 ./llvm/utils/release/./github-upload-release.py --token "$GITHUB_TOKEN" --user ${{ github.actor }} --user-token "$USER_TOKEN" check-permissions 102 uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 #v4.3.3
|
H A D | build-ci-container.yml | 61 - name: Upload container image 62 uses: actions/upload-artifact@v4
|
H A D | pr-request-release-note.yml | 44 - uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 #v4.3.0
|
H A D | email-check.yaml | 41 - uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 #v4.3.0
|
H A D | pr-code-format.yml | 96 - uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 #v4.3.0
|
/llvm-project/llvm/utils/release/ |
H A D | github-upload-release.py | 2 # ===-- github-upload-release.py ------------------------------------------===# 21 # ./github-upload-release.py --token $github_token --release 8.0.1-rc4 create 23 # Upload files for a release 24 # ./github-upload-release.py --token $github_token --release 8.0.1-rc4 upload --files llvm-8.0.1rc4… 26 # You can upload as many files as you want at a time and use wildcards e.g. 27 # ./github-upload-release.py --token $github_token --release 8.0.1-rc4 upload --files *.src.* 73 "command", type=str, choices=["create", "upload", "check-permissions"] 82 # Upload args 111 if args.command == "upload":
|
/llvm-project/llvm/docs/ |
H A D | HowToReleaseLLVM.rst | 151 and then upload them to the release page. 160 GitHub. This can be done using the github-upload-release.py script in utils/release. 164 $ github-upload-release.py upload --token <github-token> --release X.Y.Z-rcN --files <release_files> 174 pack the Release build for upload. You should use the Release+Asserts sysroot,
|
/llvm-project/third-party/benchmark/docs/ |
H A D | releasing.md | 29 * Confirm that the "Build and upload Python wheels" action runs to completion
|
/llvm-project/lldb/bindings/interface/ |
H A D | SBPlatformDocstrings.i | 14 to remotely launch and attach to processes, upload/download files,
|
/llvm-project/lldb/test/API/functionalities/postmortem/minidump-new/ |
H A D | makefile.txt | 2 # upload huge binary blobs in the repo.
|
/llvm-project/lldb/docs/use/ |
H A D | remote.rst | 155 cross built. The "run" command will cause LLDB to upload "a.out" to the 158 checksum of the file on the other end and only upload the file if it has
|
/llvm-project/mlir/include/mlir/Dialect/Tosa/IR/ |
H A D | TosaOpBase.td | 86 // TODO: Upload WIP legalization document describing this construction by
|
/llvm-project/offload/src/OpenMP/ |
H A D | API.cpp | 399 // This is a very slow path: create a filled array on the host and upload in omp_target_memset()
|
/llvm-project/compiler-rt/test/ |
H A D | lit.common.cfg.py | 627 # These are needed for tests to upload/download temp files, such as
|