From bf93d9ce8d924b3884bea934b2a8dde9d7eb7bd6 Mon Sep 17 00:00:00 2001 From: kaloster Date: Wed, 4 Sep 2024 11:49:16 -0400 Subject: [PATCH] include chromium --- .github/workflows/compatibility_tests.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/compatibility_tests.yml b/.github/workflows/compatibility_tests.yml index 539ec13ed..544cff8ae 100644 --- a/.github/workflows/compatibility_tests.yml +++ b/.github/workflows/compatibility_tests.yml @@ -109,6 +109,15 @@ jobs: # run: pip install --upgrade flatbuffers - name: Install node run: make dev-env-client + - name: Install Chromium + run: | + sudo apt-get update + sudo apt-get install -y wget + wget https://commondatastorage.googleapis.com/chromium-browser-snapshots/Linux_x64/901912/chrome-linux.zip + unzip chrome-linux.zip + sudo mv chrome-linux/chrome /usr/bin/chrome + env: + PUPPETEER_EXECUTABLE_PATH: /usr/bin/chrome # Run different types of test separately, to facilitate troubleshooting - name: Unit Tests - client run: make unit-test-client