From 64f848b048c5717fd43f2c8df6182a547add97c2 Mon Sep 17 00:00:00 2001 From: Yonggang Luo Date: Sat, 22 Oct 2022 17:58:41 +0800 Subject: ci/macOS: Getting the installed binary to be artifacts Signed-off-by: Yonggang Luo Reviewed-by: Eric Engestrom Reviewed-by: Adam Jackson Part-of: --- .github/workflows/macos.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to '.github') 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 -- cgit v1.2.3