summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorYonggang Luo <luoyonggang@gmail.com>2022-10-22 17:58:41 +0800
committerMarge Bot <emma+marge@anholt.net>2022-10-26 02:16:35 +0000
commit64f848b048c5717fd43f2c8df6182a547add97c2 (patch)
tree7931b83c915452e33d9f5be24a258df2c5f26d98 /.github
parent9a6777c7ab237284be2af47442a6dc9472ee6262 (diff)
downloadmesa-64f848b048c5717fd43f2c8df6182a547add97c2.tar.gz
ci/macOS: Getting the installed binary to be artifacts
Signed-off-by: Yonggang Luo <luoyonggang@gmail.com> Reviewed-by: Eric Engestrom <eric@igalia.com> Reviewed-by: Adam Jackson <ajax@redhat.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19258>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/macos.yml8
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index db6557b0cef..8168247fd40 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -46,11 +46,13 @@ jobs:
- name: Test
run: meson test -C build --print-errorlogs
- name: Install
- run: meson install -C build
+ run: meson install -C build --destdir $PWD/install
- name: 'Upload Artifact'
if: always()
uses: actions/upload-artifact@v3
with:
- name: test-result
- path: build/meson-logs/testlog.txt
+ name: macos-${{ matrix.glx_option }}-result
+ path: |
+ build/meson-logs/
+ install/
retention-days: 5