From 1151181b36af205ccbb4b34c78dd4d42b6c4cf71 Mon Sep 17 00:00:00 2001 From: Rajiv Shah Date: Fri, 20 Dec 2019 06:36:23 -0500 Subject: [PATCH] fix(ci): Install webkit2gtk on ubuntu when building smoke tests via prod (#188) --- .github/workflows/build-smoke-tests.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build-smoke-tests.yml b/.github/workflows/build-smoke-tests.yml index f55e0d361..946b09ada 100644 --- a/.github/workflows/build-smoke-tests.yml +++ b/.github/workflows/build-smoke-tests.yml @@ -28,6 +28,11 @@ jobs: uses: actions-rs/toolchain@v1 with: toolchain: stable + - name: install webkit2gtk (ubuntu only) + if: matrix.platform == 'ubuntu-latest' + run: | + sudo apt-get update + sudo apt-get install -y webkit2gtk-4.0 - name: cache rust bin id: cache_rust_bin uses: actions/cache@v1