From ceed04d609edb09d1c6493938499a27e30a009a4 Mon Sep 17 00:00:00 2001 From: Zach Bloomquist Date: Thu, 6 Feb 2020 09:44:15 -0500 Subject: [PATCH 1/4] use 72.0.1 --- circle.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/circle.yml b/circle.yml index 5263e7f7c789..7bb0074ea80e 100644 --- a/circle.yml +++ b/circle.yml @@ -97,6 +97,8 @@ commands: steps: - attach_workspace: at: ~/ + - run: + command: if [[ > = 'firefox' ]] then wget --no-verbose -O /tmp/firefox.tar.bz2 https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/linux-x86_64/en-US/firefox-72.0.1.tar.bz2 && tar -C /opt -xjf /tmp/firefox.tar.bz2 && rm /tmp/firefox.tar.bz2 && ln -fs /opt/firefox/firefox /usr/bin/firefox; fi - run: command: npm run test-e2e -- --chunk << parameters.chunk >> --browser << parameters.browser >> working_directory: packages/server From dbf7f4616c380fb2ef3006396bf97271bc3aecd9 Mon Sep 17 00:00:00 2001 From: Zach Bloomquist Date: Thu, 6 Feb 2020 09:45:26 -0500 Subject: [PATCH 2/4] typo --- circle.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circle.yml b/circle.yml index 7bb0074ea80e..388f89354163 100644 --- a/circle.yml +++ b/circle.yml @@ -98,7 +98,7 @@ commands: - attach_workspace: at: ~/ - run: - command: if [[ > = 'firefox' ]] then wget --no-verbose -O /tmp/firefox.tar.bz2 https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/linux-x86_64/en-US/firefox-72.0.1.tar.bz2 && tar -C /opt -xjf /tmp/firefox.tar.bz2 && rm /tmp/firefox.tar.bz2 && ln -fs /opt/firefox/firefox /usr/bin/firefox; fi + command: if [[ << parameters.browser >> = 'firefox' ]] then wget -O /tmp/firefox.tar.bz2 https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/linux-x86_64/en-US/firefox-72.0.1.tar.bz2 && tar -C /opt -xjf /tmp/firefox.tar.bz2 && rm /tmp/firefox.tar.bz2 && ln -fs /opt/firefox/firefox /usr/bin/firefox; fi - run: command: npm run test-e2e -- --chunk << parameters.chunk >> --browser << parameters.browser >> working_directory: packages/server From 4768dcf3e2afc48b056816d5b11a942b491f442b Mon Sep 17 00:00:00 2001 From: Zach Bloomquist Date: Thu, 6 Feb 2020 09:52:35 -0500 Subject: [PATCH 3/4] bash < zsh --- circle.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circle.yml b/circle.yml index 388f89354163..c5925b2776c7 100644 --- a/circle.yml +++ b/circle.yml @@ -98,7 +98,7 @@ commands: - attach_workspace: at: ~/ - run: - command: if [[ << parameters.browser >> = 'firefox' ]] then wget -O /tmp/firefox.tar.bz2 https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/linux-x86_64/en-US/firefox-72.0.1.tar.bz2 && tar -C /opt -xjf /tmp/firefox.tar.bz2 && rm /tmp/firefox.tar.bz2 && ln -fs /opt/firefox/firefox /usr/bin/firefox; fi + command: if [[ << parameters.browser >> = 'firefox' ]]; then wget -O /tmp/firefox.tar.bz2 https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/linux-x86_64/en-US/firefox-72.0.1.tar.bz2 && tar -C /opt -xjf /tmp/firefox.tar.bz2 && rm /tmp/firefox.tar.bz2 && ln -fs /opt/firefox/firefox /usr/bin/firefox; fi - run: command: npm run test-e2e -- --chunk << parameters.chunk >> --browser << parameters.browser >> working_directory: packages/server From 88d22da17fa128af797011234b00330ef5803626 Mon Sep 17 00:00:00 2001 From: Zach Bloomquist Date: Thu, 6 Feb 2020 10:11:08 -0500 Subject: [PATCH 4/4] install for driver tests too --- circle.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/circle.yml b/circle.yml index c5925b2776c7..27fbd3862467 100644 --- a/circle.yml +++ b/circle.yml @@ -709,6 +709,8 @@ jobs: steps: - attach_workspace: at: ~/ + - run: + command: wget -O /tmp/firefox.tar.bz2 https://download-installer.cdn.mozilla.net/pub/firefox/releases/72.0.1/linux-x86_64/en-US/firefox-72.0.1.tar.bz2 && tar -C /opt -xjf /tmp/firefox.tar.bz2 && rm /tmp/firefox.tar.bz2 && ln -fs /opt/firefox/firefox /usr/bin/firefox - run: command: npm start background: true