Skip to content

Commit 83ba2d5

Browse files
authored
Merge branch 'dev' into dev
2 parents 6f17610 + aa4ee6f commit 83ba2d5

2 files changed

Lines changed: 9 additions & 3 deletions

File tree

.github/workflows/run_tests_on_modified_meta_with_secrets.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,8 @@ jobs:
3030
- name: Get changed files
3131
id: modified-files
3232
run: |
33-
git remote add upstream ${{ github.event.pull_request.base.repo.clone_url }}
34-
git fetch upstream
35-
changed_files=$(git diff upstream/${{ github.event.pull_request.base.ref }} --name-only | paste -sd, -)
33+
git fetch origin ${{ github.event.pull_request.base.ref }}
34+
changed_files=$(git diff origin/${{ github.event.pull_request.base.ref }}...pr-head --name-only | paste -sd, -)
3635
echo "$changed_files" | python3 .github/scripts/list_modified_scripts_with_secrets.py
3736
3837
process_modified_files:

script/install-llvm-src/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ mlcr install,src,llvm,from.src,src-llvm
4343
| `--targets` | | | `` |
4444
| `--target_triple` | | | `` |
4545
| `--extra_options` | | | `` |
46+
| `--per_target_runtime_dir` | | | `` |
47+
| `--clean` | | | `` |
4648
### Generic Script Inputs
4749

4850
| Name | Description | Choices | Default |
@@ -97,6 +99,11 @@ mlcr install,src,llvm,from.src,src-llvm
9799
- `no-openmp`
98100
- `openmp` (default)
99101

102+
### Openmp-rt
103+
104+
- `no-openmp-rt`
105+
- `openmp-rt`
106+
100107
### Repo
101108

102109
- `repo.#` _(# can be substituted dynamically)_

0 commit comments

Comments
 (0)