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>
This commit is contained in:
Yonggang Luo 2022-10-22 17:58:41 +08:00 committed by Marge Bot
parent 9a6777c7ab
commit 64f848b048
1 changed files with 5 additions and 3 deletions

View File

@ -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