From 7a438ffda1b06758c314318bbb4aae7d9ea0bf18 Mon Sep 17 00:00:00 2001 From: Robin Linden Date: Mon, 13 Nov 2023 20:52:54 +0100 Subject: [PATCH] ci: Run tui against an example HTML document in Windows jobs --- .github/workflows/ci.yaml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5f13c2f9c..a54496832 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -196,10 +196,10 @@ jobs: run: bazel build ... -c dbg - name: Test run: bazel test ... -c dbg - # TODO(robinlinden): This no longer runs in CI due to http://example.com - # being inaccessible. - # - name: Run - # run: bazel run browser:tui -c dbg + - name: Run + run: | + echo "

Example

This is an example page.

" >example.html + bazel run browser:tui -c dbg -- file:/$(PWD)/example.html windows-clang-cl: runs-on: windows-2022 @@ -216,9 +216,10 @@ jobs: - run: echo "build --config clang-cl" >.bazelrc.local - run: echo "build --disk_cache ~/.cache/bazel" >>.bazelrc.local - run: bazel test ... - # TODO(robinlinden): This no longer runs in CI due to http://example.com - # being inaccessible. - # - run: bazel run browser:tui + - name: Run + run: | + echo "

Example

This is an example page.

" >example.html + bazel run browser:tui -- file:/$(PWD)/example.html clang-format: runs-on: ubuntu-22.04