Update .gitea/workflows/run_tests.yaml
Run tests / Run tests (push) Failing after 7s

This commit is contained in:
2026-05-02 16:11:15 +00:00
committed by Robear Selwans
parent 8500426606
commit e232623364
+15 -4
View File
@@ -16,10 +16,21 @@ jobs:
- name: Run tests - name: Run tests
run: meson test -C build run: meson test -C build
- name: Upload Logs - name: Upload Meson Setup Logs
if: always() if: always()
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: Meson Logs name: meson-setup.txt
path: \ path: build/meson-logs/meson-setup.txt
build/meson-logs/
- name: Upload Meson Build Logs
if: always()
uses: actions/upload-artifact@v3
with:
path: build/meson-logs/meson-log.txt
- name: Upload Meson Test Logs
if: always()
uses: actions/upload-artifact@v3
with:
path: build/meson-logs/testlog.txt