From 654192c258309e75f854cd05d9920f3561035867 Mon Sep 17 00:00:00 2001 From: Kevin Trogant Date: Mon, 15 Jul 2024 16:53:25 +0200 Subject: [PATCH] Specify gitea server url for checkout --- .gitea/workflows/ci_meson.yaml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci_meson.yaml b/.gitea/workflows/ci_meson.yaml index bf99ee8..4b376c7 100644 --- a/.gitea/workflows/ci_meson.yaml +++ b/.gitea/workflows/ci_meson.yaml @@ -16,7 +16,7 @@ on: jobs: build: - name: Build on ${{ matrix.os }} + name: Build on ${{ matrix.os }} with Meson v${{ matrix.meson_version }} runs-on: ${{ matrix.os }} strategy: matrix: @@ -25,6 +25,8 @@ jobs: steps: - name: Checkout Code uses: actions/checkout@v4 + with: + github-server-url: 'https://libneat.hopto.org/git/' - name: Setup Python uses: actions/setup-python@v5 with: @@ -39,4 +41,9 @@ jobs: run: meson compile -C build - name: Run Tests run: meson test -C build/ -v - \ No newline at end of file + - name: Upload Test Log + uses: actions/upload-artifact@v4 + if: failure() + with: + name: ${{ matrix.os }}_Meson_Testlog + path: build/meson-logs/testlog.txt