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