this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci: bound hosted e2e runtime

Khue Doan bb13f2f1 89d8e52f

+13 -1
+13 -1
.github/workflows/test-e2e.yml
··· 52 52 - name: Run end-to-end test 53 53 run: | 54 54 mkdir -p "$NIXIE_E2E_WORKDIR" 55 - sudo env PATH="$PATH" NIXIE_E2E_WORKDIR="$NIXIE_E2E_WORKDIR" "$(command -v nix)" run --print-build-logs ./examples#e2e 55 + timeout --signal=TERM 30m \ 56 + sudo env PATH="$PATH" NIXIE_E2E_WORKDIR="$NIXIE_E2E_WORKDIR" "$(command -v nix)" run --print-build-logs ./examples#e2e 57 + 58 + - name: Show harness logs on failure 59 + if: failure() 60 + run: | 61 + for file in "$NIXIE_E2E_WORKDIR"/nixie.log "$NIXIE_E2E_WORKDIR"/dnsmasq.log; do 62 + if [ -f "$file" ]; then 63 + echo "::group::$(basename "$file")" 64 + sed -n '1,240p' "$file" 65 + echo "::endgroup::" 66 + fi 67 + done 56 68 57 69 - name: Relax permissions on artifacts 58 70 if: always()