diff options
author | Tom Stellard <tstellar@redhat.com> | 2019-11-20 00:05:52 +0000 |
---|---|---|
committer | Tom Stellard <tstellar@redhat.com> | 2019-11-20 13:02:38 -0800 |
commit | 5bb85aeecac15092c5c2676756fe5bec54530c3a (patch) | |
tree | 4c5d7985137ddf57d24136769c2fa097f34a3c2c | |
parent | d24c8dde9103eceb9f689176352481018b79d2af (diff) | |
download | llvm-5bb85aeecac15092c5c2676756fe5bec54530c3a.tar.gz |
GitHub Actions: Pull source code from current repo when dumping the ABI
This makes it possible for this step to work during pull requests.
-rw-r--r-- | .github/workflows/commit-tests.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/commit-tests.yml b/.github/workflows/commit-tests.yml index e60167c20848..58c35a0a5ce1 100644 --- a/.github/workflows/commit-tests.yml +++ b/.github/workflows/commit-tests.yml @@ -48,8 +48,10 @@ jobs: # FIXME: Referencing the env context does not work here # ref: llvmorg-${{ env.release_major }}.0.0 ref: llvmorg-9.0.0 + repo: llvm/llvm-project - name: build-latest ref: ${{ github.sha }} + repo: ${{ github.repository }} steps: - name: Install Ninja uses: llvm/actions/install-ninja@master @@ -59,6 +61,7 @@ jobs: uses: llvm/actions/get-llvm-project-src@master with: ref: ${{ matrix.ref }} + repo: ${{ matrix.repo }} - name: Configure run: | mkdir build |